rice-xml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kuali.rice</groupId> <artifactId>rice-xml</artifactId> <version>2.6.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2005-2018 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.opensource.org/licenses/ecl2.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.kuali.rice</groupId> <artifactId>rice-db</artifactId> <version>2.6.2</version> </parent> <artifactId>rice-xml</artifactId> <name>Rice Xml</name> <properties> <project.resources.dir>${project.basedir}/src/main/resources</project.resources.dir> <project.groupId.path>org/kuali/rice</project.groupId.path> <project.resources.filter.pattern>${project.groupId.path}/${project.artifactId}/spring/applicationContext.xml</project.resources.filter.pattern> </properties> <dependencies> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-util</artifactId> <version>${kuali-util.version}</version> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-deploy</artifactId> <version>${kuali-deploy.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-sql</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-core-api</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-core-service-framework</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-impl</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.resources.dir}</directory> <includes> <include>${project.resources.filter.pattern}</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>${project.resources.dir}</directory> <excludes> <exclude>${project.resources.filter.pattern}</exclude> </excludes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>spring-maven-plugin</artifactId> <executions> <execution> <id>metainf</id> <goals> <goal>load</goal> </goals> <phase>prepare-package</phase> <configuration> <annotatedClass>org.kuali.rice.xml.config.spring.RiceXmlConfig</annotatedClass> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.kuali.rice</groupId> <artifactId>rice-db-config</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-deploy</artifactId> <version>${kuali-deploy.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>mysql</id> <properties> <db.vendor>mysql</db.vendor> <jdbc.driver.groupId>mysql</jdbc.driver.groupId> <jdbc.driver.artifactId>${mysql.jdbc.artifactId}</jdbc.driver.artifactId> <jdbc.driver.version>${mysql.jdbc.version}</jdbc.driver.version> </properties> </profile> <profile> <id>oracle</id> <properties> <db.platform>Oracle</db.platform> <db.vendor>oracle</db.vendor> <jdbc.driver.groupId>com.oracle</jdbc.driver.groupId> <jdbc.driver.artifactId>ojdbc6_g</jdbc.driver.artifactId> <jdbc.driver.version>11.2.0.2</jdbc.driver.version> </properties> </profile> <profile> <id>local</id> <properties> <properties.decrypt>false</properties.decrypt> <mysql.dba.url>jdbc:mysql://localhost</mysql.dba.url> <mysql.dba.username>root</mysql.dba.username> <mysql.dba.password>NONE</mysql.dba.password> <oracle.dba.url>jdbc:oracle:thin:@localhost:1521:XE</oracle.dba.url> <oracle.dba.username>system</oracle.dba.username> <oracle.dba.password>manager</oracle.dba.password> </properties> </profile> <profile> <id>db</id> <properties> <db.profile>master</db.profile> </properties> <build> <plugins> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>spring-maven-plugin</artifactId> <executions> <execution> <id>load</id> <phase>initialize</phase> <goals> <goal>load</goal> </goals> <configuration> <propertySourcesConfig>org.kuali.rice.xml.spring.IngestXmlPSC</propertySourcesConfig> <annotatedClasses> <annotatedClass>org.kuali.rice.xml.spring.IngestXmlExecConfig</annotatedClass> <annotatedClass>org.kuali.rice.xml.spring.LaunchRiceConfig</annotatedClass> </annotatedClasses> <activeProfiles>${db.profile}</activeProfiles> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>${jdbc.driver.groupId}</groupId> <artifactId>${jdbc.driver.artifactId}</artifactId> <version>${jdbc.driver.version}</version> </dependency> <dependency> <groupId>org.kuali.rice</groupId> <artifactId>rice-xml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-sql</artifactId> <version>${kuali-sql.version}</version> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-util</artifactId> <version>${kuali-util.version}</version> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-jdbc</artifactId> <version>${kuali-jdbc.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>org.eclipse.persistence.jpa</artifactId> <version>${eclipselink.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-edl-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-krms-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>${servlet-api.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </profile> <profile> <id>server-bootstrap</id> <properties> <db.profile>server-bootstrap</db.profile> <jdbc.username>RICESRVRBTSP</jdbc.username> </properties> </profile> <profile> <id>server-demo</id> <properties> <db.profile>server-demo</db.profile> <jdbc.username>RICESRVRDEMO</jdbc.username> </properties> </profile> <!-- This profile will be used unless -DskipOracleProfile is passed as a parameter --> <profile> <id>usingOracle</id> <activation> <property> <name>!skipOracleProfile</name> </property> </activation> <dependencies> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>org.eclipse.persistence.oracle</artifactId> <version>${eclipselink.version}</version> </dependency> </dependencies> </profile> </profiles> </project>