jcs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.jcs</groupId> <artifactId>jcs</artifactId> <version>1.3</version> </dependency>
<?xml version="1.0"?><project> <parent> <artifactId>apache</artifactId> <groupId>org.apache</groupId> <version>3</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.jcs</groupId> <artifactId>jcs</artifactId> <packaging>pom</packaging> <name>Jakarta JCS</name> <version>1.3</version> <url>http://jakarta.apache.org/jcs/</url> <issueManagement> <url>http://issues.apache.org/jira/</url> </issueManagement> <inceptionYear>2002</inceptionYear> <mailingLists> <mailingList> <name>JCS User List</name> <subscribe>jcs-users-subscribe@jakarta.apache.org</subscribe> <unsubscribe>jcs-users-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-jcs-users/</archive> </mailingList> <mailingList> <name>JCS Developer List</name> <subscribe>jcs-dev-subscribe@jakarta.apache.org</subscribe> <unsubscribe>jcs-dev-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-jcs-dev/</archive> </mailingList> <mailingList> <name>OLD User list</name> <subscribe></subscribe> <unsubscribe></unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-turbine-jcs-user/</archive> </mailingList> <mailingList> <name>OLD Developer list</name> <subscribe></subscribe> <unsubscribe></unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/jakarta-turbine-jcs-dev/</archive> </mailingList> </mailingLists> <developers> <developer> <id>asmuts</id> <name>Aaron Smuts</name> <email>asmuts@apache.org</email> <organization></organization> </developer> <developer> <id>jtaylor</id> <name>James Taylor</name> <email>james@jamestaylor.org</email> <organization></organization> </developer> <developer> <id>hchar</id> <name>Hanson Char</name> <email>hchar@apache.org</email> <organization></organization> </developer> <developer> <id>tsavo</id> <name>Travis Savo</name> <email>tsavo@ifilm.com</email> <organization>IFilm</organization> </developer> </developers> <contributors> <contributor> <name>Scott Eade</name> <email>seade@backstagetech.com.au</email> </contributor> <contributor> <name>Michael Stevens</name> <email>mstevens@etla.org</email> </contributor> <contributor> <name>Thomas Vandahl</name> <email>tv@apache.org</email> </contributor> </contributors> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/jcs/trunk</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/jcs/trunk</developerConnection> <url>http://svn.apache.org/viewvc/jakarta/jcs/trunk</url> </scm> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.0-alpha-1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${maven.compile.source}</source> <target>${maven.compile.target}</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>1.3</Specification-Version> <Specification-Vendor>${project.organization.name}</Specification-Vendor> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>1.3</Implementation-Version> <Implementation-Vendor>${project.organization.name}</Implementation-Vendor> <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id> <X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${maven.compile.source}</X-Compile-Target-JDK> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>create-source-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>create-javadoc-jar</id> <goals> <goal>jar</goal> </goals> <configuration> <source>${maven.compile.source}</source> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>apache.releases</id> <name>Apache Release Distribution Repository</name> <url>${jcs.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url> </repository> </distributionManagement> </profile> <profile> <id>rc</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>create-source-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>create-javadoc-jar</id> <goals> <goal>jar</goal> </goals> <configuration> <source>${maven.compile.source}</source> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>${jcs.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url> </repository> <snapshotRepository> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>${jcs.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <dependencies> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.2.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.3</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>3.0.10</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.7.3.3</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.12</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>servletapi</groupId> <artifactId>servletapi</artifactId> <version>2.3</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>tomcat</groupId> <artifactId>tomcat-util</artifactId> <version>3.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>velocity</groupId> <artifactId>velocity</artifactId> <version>1.5</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>xmlrpc</groupId> <artifactId>xmlrpc</artifactId> <version>2.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.6.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>2.0.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>berkeleydb</groupId> <artifactId>berkeleydb</artifactId> <version>1.5.1</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <configuration> <moduleExcludes> <xdoc>navigation.xml,changes.xml</xdoc> </moduleExcludes> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> <version>2.0-beta-1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>rat-maven-plugin</artifactId> </plugin> </plugins> </reporting> <distributionManagement> <repository> <id>dummy</id> <name>Dummy to avoid accidental deploys</name> <url></url> </repository> <status>deployed</status> </distributionManagement> <properties> <maven.compile.source>1.3</maven.compile.source> <maven.compile.target>1.3</maven.compile.target> <jcs.deployment.protocol>scp</jcs.deployment.protocol> </properties> </project>