cs-utils-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.csutils</groupId>
<artifactId>cs-utils-core</artifactId>
<version>2.2.5</version>
</dependency><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>
<artifactId>cs-utils-parent</artifactId>
<groupId>net.sf.csutils</groupId>
<version>5</version>
</parent>
<artifactId>cs-utils-core</artifactId>
<name>CentraSite Utilities Core Library</name>
<version>2.2.5</version>
<description>
Core Library of the CentraSite utilties. Other libraries (Importer, etc.)
depend on it.
</description>
<dependencies>
<dependency>
<groupId>com.centrasite</groupId>
<artifactId>CentraSiteJAXR-API</artifactId>
<version>8.0.4.0.4020</version>
</dependency>
<dependency>
<groupId>com.centrasite</groupId>
<artifactId>CentraSiteUtils</artifactId>
<version>8.0.4.0.4020</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.labs.jaxmas</groupId>
<artifactId>jaxmas-registry</artifactId>
<version>0.2.4</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.util</groupId>
<artifactId>ws-commons-util</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.sun.tools.xjc.maven2</groupId>
<artifactId>maven-jaxb-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>src/main/schema</schemaDirectory>
<generatePackage>net.sf.csutils.core.model.vo</generatePackage>
<depends file="src/main/schema/registryModel.xsd"/>
<produces file="target/generated-sources/xjc/net/sf/csutils/core/model/vo/ObjectFactory.java"/>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>antlr-maven-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<grammars>csql.g</grammars>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:git://csutils.git.sourceforge.net/gitroot/csutils/csutils/cs-utils-core</connection>
<developerConnection>scm:git:ssh://csutils.git.sourceforge.net/gitroot/csutils/csutils/cs-utils-core</developerConnection>
<url>http://csutils.git.sourceforge.net/git/gitweb.cgi?p=csutils/csutils;a=tree;f=cs-utils-core</url>
</scm>
</project>