Versions Compared

Key

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

...

  1. Procure user accounts to Rice databases
  2. Procure the UC Davis-specific 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-impl 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>ietmavenrepositori</id>
              <name>IET <name>KualiMaven Repository</name>
      	<url>https://testpsl-95.kualiucdavis.orgedu/maven<repo</url>
          </repository>  
      </repositories>
      
      <properties>
        <rice-api.version>[some Rice API version]</rice-api.version>
        <rice-impl.version>[some Rice Impl version]</rice-impl.version>
      </properties>
      
      <dependencies>
          <dependency>
           <groupId>org   <groupId>edu.ucdavis.kuali.rice</groupId>
              <artifactId>rice-api</artifactId>
              <version>${rice-api.version}</version>               
          </dependency>	
          <dependency>
          <groupId>org    <groupId>edu.ucdavis.kuali.rice</groupId>
              <artifactId>rice-impl</artifactId>
              <version>${rice-impl.version}</version>
              <exclusions>
                  <exclusion>
                      <groupId>com.oracle</groupId>
                      <artifactId>ojdbc14</artifactId>
                  </exclusion>
              </exclusions>
          </dependency>
      </dependencies>
      
      Info

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

...