Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Prerequisites

  1. Procure user accounts to Rice databases
  2. Procure the rice-api and rice-impl JARs and all transitive dependencies using either of the following methods:
    • Download JARs and all transitive dependencies from the Kuali Rice website
    • Download ucd-rice-standalone-server WAR from Artifactory. This WAR contains all dependencies.
    • Add rice-api and rice-impl as Maven dependencies in your project.
      Code Block
      borderStylesolid
      titlepom.xml
      <repositories>
          <repository>
              <id>kuali</id>
              <name>Kuali Repository</name>
      	<url>https://test.kuali.org/maven</url>
          </repository>  
      </repositories>
      
      <dependency>
          <groupId>org.kuali.rice</groupId>
          <artifactId>rice-api</artifactId>
          <version>${rice-api.version}</version>               
      </dependency>	
      <dependency>
          <groupId>org.kuali.rice</groupId>
          <artifactId>rice-impl</artifactId>
          <version>${rice-impl.version}</version>
          <exclusions>
              <exclusion>
                  <groupId>com.oracle</groupId>
                  <artifactId>ojdbc14</artifactId>
                  </exclusion>
              </exclusions>
      </dependency>
      
      Info

      We exclude the Oracle JDBC driver since it is a commercial product and not available on any public Maven repositories.

...