rice-development-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kuali.rice</groupId> <artifactId>rice-development-tools</artifactId> <version>2.6.2</version> </dependency>
<!-- 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"> <name>Rice Development Tools</name> <description> This module contains rice development tools.This module is for development purposes only. Client applications should not depend on this module but can use this module during the course of development or implementation. Other rice modules should not depend on this module. This module can depend on any part of rice. </description> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.kuali.rice</groupId> <artifactId>rice</artifactId> <version>2.6.2</version> </parent> <artifactId>rice-development-tools</artifactId> <properties> <generateReports>false</generateReports> <codemodel.version>2.4.1</codemodel.version> <javaparser.version>1.0.9</javaparser.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>rice-krad-data</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.kuali.db.ojb</groupId> <artifactId>db-ojb</artifactId> </dependency> <dependency> <groupId>com.sun.codemodel</groupId> <artifactId>codemodel</artifactId> <version>${codemodel.version}</version> </dependency> <dependency> <groupId>no.geosoft</groupId> <artifactId>filemonitor</artifactId> </dependency> <dependency> <groupId>com.google.code.javaparser</groupId> <artifactId>javaparser</artifactId> <version>${javaparser.version}</version> </dependency> </dependencies> </project>