Author: sebb Date: Mon Mar 31 21:44:36 2014 New Revision: 1583472 URL: http://svn.apache.org/r1583472 Log: eol-style fixes
Modified: commons/proper/jcs/trunk/auxiliary-builds/jdk14/src/test-conf/log4j.properties (props changed) commons/proper/jcs/trunk/pom.xml (contents, props changed) commons/proper/jcs/trunk/src/assembly/bin.xml (props changed) commons/proper/jcs/trunk/src/assembly/src.xml (props changed) commons/proper/jcs/trunk/src/changes/changes.xml (props changed) commons/proper/jcs/trunk/src/scripts/remoteCacheStats.sh (props changed) commons/proper/jcs/trunk/src/site/site.xml (props changed) commons/proper/jcs/trunk/src/test-conf/thread_pool.properties (props changed) commons/proper/jcs/trunk/xdocs/BlockDiskCache.xml (props changed) commons/proper/jcs/trunk/xdocs/CacheEventLogging.xml (contents, props changed) commons/proper/jcs/trunk/xdocs/DownloadPage.xml (props changed) commons/proper/jcs/trunk/xdocs/ElementEventHandling.xml (props changed) commons/proper/jcs/trunk/xdocs/IndexedDiskCacheProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/JCSvsEHCache.xml (props changed) commons/proper/jcs/trunk/xdocs/JDBCDiskCache.xml (props changed) commons/proper/jcs/trunk/xdocs/JDBCDiskCacheProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/LateralJavaGroupsAuxCache.xml (props changed) commons/proper/jcs/trunk/xdocs/LateralTCPProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/MySQLDiskCacheProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/RegionProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/RemoteCacheProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/RemoteHttpCacheProperties.xml (props changed) commons/proper/jcs/trunk/xdocs/download_jcs.xml (contents, props changed) commons/proper/jcs/trunk/xdocs/getting_started/intro.xml (props changed) Propchange: commons/proper/jcs/trunk/auxiliary-builds/jdk14/src/test-conf/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Modified: commons/proper/jcs/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/pom.xml?rev=1583472&r1=1583471&r2=1583472&view=diff ============================================================================== --- commons/proper/jcs/trunk/pom.xml (original) +++ commons/proper/jcs/trunk/pom.xml Mon Mar 31 21:44:36 2014 @@ -1,417 +1,417 @@ -<!-- - - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache 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.apache.org/licenses/LICENSE-2.0 - - 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.apache.commons</groupId> - <artifactId>commons-parent</artifactId> - <version>33</version> - </parent> - - <groupId>org.apache.commons</groupId> - <artifactId>commons-jcs</artifactId> - <packaging>jar</packaging> - <version>2.0-SNAPSHOT</version> - <name>Commons JCS</name> - <url>http://commons.apache.org/proper/commons-jcs/</url> - <description>Apache Commons JCS is a distributed, versatile caching system.</description> - <inceptionYear>2002</inceptionYear> - - <dependencies> - - <!-- REQUIRED FOR JCS CORE --> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1.3</version> - </dependency> - - <!-- JDBC DISK CACHE --> - <dependency> - <groupId>commons-dbcp</groupId> - <artifactId>commons-dbcp</artifactId> - <version>1.3</version> - <optional>true</optional> - </dependency> - - <!-- JDBC DISK CACHE --> - <dependency> - <groupId>commons-pool</groupId> - <artifactId>commons-pool</artifactId> - <version>1.5.4</version> - <optional>true</optional> - </dependency> - - <dependency> - <groupId>hsqldb</groupId> - <artifactId>hsqldb</artifactId> - <version>1.7.3.3</version> - <!-- <version>1.8.0.7</version> --> - <optional>true</optional> - </dependency> - - <!-- For comparative performance tests only --> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.2.1</version> - <scope>test</scope> - </dependency> - - <!-- Test dependencies --> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.16</version> - <scope>test</scope> - </dependency> - -<!-- Exclude for now --> - <!-- dependency> - <groupId>org.jgroups</groupId> - <artifactId>jgroups</artifactId> - <version>3.4.1.Final</version> - <optional>true</optional> - </dependency --> - - <dependency> - <groupId>org.apache.velocity</groupId> - <artifactId>velocity-tools</artifactId> - <version>2.0</version> - <optional>true</optional> - </dependency> - - <dependency> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - <version>3.0.1</version> - <optional>true</optional> - </dependency> - - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.5</version> - <optional>true</optional> - </dependency> - - </dependencies> - - <issueManagement> - <system>jira</system> - <url>http://issues.apache.org/jira/browse/JCS</url> - </issueManagement> - - <scm> - <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/jcs/trunk</connection> - <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/jcs/trunk</developerConnection> - <url>http://svn.apache.org/viewvc/commons/proper/jcs/trunk</url> - </scm> - - <mailingLists> - <mailingList> - <name>Jakarta JCS User List Archive</name> - <subscribe></subscribe> - <unsubscribe></unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/jakarta-jcs-users/</archive> - </mailingList> - <mailingList> - <name>Jakarta JCS Developer List Archive</name> - <subscribe></subscribe> - <unsubscribe></unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/jakarta-jcs-dev/</archive> - </mailingList> - <mailingList> - <name>OLD User List Archive</name> - <subscribe></subscribe> - <unsubscribe></unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/jakarta-turbine-jcs-user/</archive> - </mailingList> - <mailingList> - <name>OLD Developer List Archive</name> - <subscribe></subscribe> - <unsubscribe></unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/jakarta-turbine-jcs-dev/</archive> - </mailingList> - <mailingList> - <name>Commons User List</name> - <subscribe>user-subscr...@commons.apache.org</subscribe> - <unsubscribe>user-unsubscr...@commons.apache.org</unsubscribe> - <post>u...@commons.apache.org</post> - <archive>http://mail-archives.apache.org/mod_mbox/commons-user/</archive> - <otherArchives> - <otherArchive>http://markmail.org/list/org.apache.commons.users/</otherArchive> - <otherArchive>http://old.nabble.com/Commons---User-f319.html</otherArchive> - <otherArchive>http://www.mail-archive.com/user@commons.apache.org/</otherArchive> - <otherArchive>http://news.gmane.org/gmane.comp.jakarta.commons.user</otherArchive> - </otherArchives> - </mailingList> - <mailingList> - <name>Commons Dev List</name> - <subscribe>dev-subscr...@commons.apache.org</subscribe> - <unsubscribe>dev-unsubscr...@commons.apache.org</unsubscribe> - <post>d...@commons.apache.org</post> - <archive>http://mail-archives.apache.org/mod_mbox/commons-dev/</archive> - <otherArchives> - <otherArchive>http://markmail.org/list/org.apache.commons.dev/</otherArchive> - <otherArchive>http://old.nabble.com/Commons---Dev-f317.html</otherArchive> - <otherArchive>http://www.mail-archive.com/dev@commons.apache.org/</otherArchive> - <otherArchive>http://news.gmane.org/gmane.comp.jakarta.commons.devel</otherArchive> - </otherArchives> - </mailingList> - <mailingList> - <name>Commons Issues List</name> - <subscribe>issues-subscr...@commons.apache.org</subscribe> - <unsubscribe>issues-unsubscr...@commons.apache.org</unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/commons-issues/</archive> - <otherArchives> - <otherArchive>http://markmail.org/list/org.apache.commons.issues/</otherArchive> - <otherArchive>http://old.nabble.com/Commons---Issues-f25499.html</otherArchive> - <otherArchive>http://www.mail-archive.com/issues@commons.apache.org/</otherArchive> - </otherArchives> - </mailingList> - <mailingList> - <name>Commons Commits List</name> - <subscribe>commits-subscr...@commons.apache.org</subscribe> - <unsubscribe>commits-unsubscr...@commons.apache.org</unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/commons-commits/</archive> - <otherArchives> - <otherArchive>http://markmail.org/list/org.apache.commons.commits/</otherArchive> - <otherArchive>http://www.mail-archive.com/commits@commons.apache.org/</otherArchive> - </otherArchives> - </mailingList> - <mailingList> - <name>Apache Announce List</name> - <subscribe>announce-subscr...@apache.org</subscribe> - <unsubscribe>announce-unsubscr...@apache.org</unsubscribe> - <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive> - <otherArchives> - <otherArchive>http://markmail.org/list/org.apache.announce/</otherArchive> - <otherArchive>http://old.nabble.com/Apache-News-and-Announce-f109.html</otherArchive> - <otherArchive>http://www.mail-archive.com/announce@apache.org/</otherArchive> - <otherArchive>http://news.gmane.org/gmane.comp.apache.announce</otherArchive> - </otherArchives> - </mailingList> - </mailingLists> - - <developers> - <developer> - <id>asmuts</id> - <name>Aaron Smuts</name> - <email>asm...@apache.org</email> - <organization /> - </developer> - <developer> - <id>jtaylor</id> - <name>James Taylor</name> - <email>ja...@jamestaylor.org</email> - <organization /> - </developer> - <developer> - <id>hchar</id> - <name>Hanson Char</name> - <email>hc...@apache.org</email> - <organization /> - </developer> - <developer> - <id>tsavo</id> - <name>Travis Savo</name> - <email>ts...@ifilm.com</email> - <organization>IFilm</organization> - </developer> - <developer> - <id>tv</id> - <name>Thomas Vandahl</name> - <email>t...@apache.org</email> - <organization /> - </developer> - </developers> - - <contributors> - <contributor> - <name>Scott Eade</name> - <email>se...@backstagetech.com.au</email> - </contributor> - <contributor> - <name>Michael Stevens</name> - <email>mstev...@etla.org</email> - </contributor> - </contributors> - - <build> - <sourceDirectory>src/java</sourceDirectory> - <testSourceDirectory>src/test</testSourceDirectory> - <testResources> - <testResource> - <directory>src/test-conf</directory> - <includes> - <include>**/*.properties</include> - <include>**/*.ccf</include> - </includes> - </testResource> - </testResources> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>${commons.surefire.version}</version> - <configuration> - <argLine>-Xmx256m -Djava.security.manager -Djava.security.policy=${basedir}/src/conf/cache.policy</argLine> - <forkMode>pertest</forkMode> - <includes> - <include>**/*UnitTest.java</include> - </includes> - <excludes> - <!-- - Several of the test cases rely on background tasks that are timing - sensitive. - --> - <!-- You need to manually run these test cases. --> - <exclude>**/BlockDiskElementDescriptorUnitTest.java</exclude> - <exclude>**/HSQLDiskCacheConcurrentUnitTest.java</exclude> - <exclude>**/HSQLDiskCacheUnitTest.java</exclude> - <exclude>**/IndexedDiskCacheOptimizationUnitTest.java</exclude> - <exclude>**/TestTCPLateralUnitTest.java</exclude> - <exclude>**/UDPDiscoveryUnitTest.java</exclude> - <!-- Causes hang in Continuum --> - <exclude>**/UDPDiscoverySenderUnitTest.java</exclude> - <!-- The ones that fail may be different for you. --> - <!-- <exclude>**/JDBCDiskCacheRemovalUnitTest.java</exclude> --> - <!-- <exclude>**/JDBCDiskCacheUnitTest.java</exclude> --> - </excludes> - <source>${maven.compiler.source}</source> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>rmic-maven-plugin</artifactId> - <version>1.1</version> - </plugin> - </plugins> - </pluginManagement> - <plugins> - <!-- We need to generate some stub/skel classes with RMIC --> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>rmic-maven-plugin</artifactId> - <executions> - <execution> - <id>rmic</id> - <goals> - <goal>rmic</goal> - </goals> - <configuration> - <includes> - <include>**/RemoteCacheListener.class</include> - <include>**/RemoteCacheServer.class</include> - </includes> - <outputDirectory>${project.build.outputDirectory}</outputDirectory> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <version>3.1</version> - <configuration> - <targetJdk>1.6</targetJdk> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>2.5.3</version> - </plugin> - </plugins> - </reporting> - - <profiles> - <profile> - <!-- Override Commons parent release profile --> - <id>release</id> - <build> - <plugins> - <plugin> - <!-- build the source and binary distribution packages --> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-assembly-plugin</artifactId> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>single</goal> - </goals> - <configuration> - <!-- only the parent has assembly descriptors --> - <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> - <descriptors> - <descriptor>src/assembly/bin.xml</descriptor> - <descriptor>src/assembly/src.xml</descriptor> - </descriptors> - <tarLongFileFormat>gnu</tarLongFileFormat> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - - <properties> - - <!-- Default configuration for compiler source and target JVM --> - <maven.compiler.sourceEncoding>UTF-8</maven.compiler.sourceEncoding> - <maven.compiler.source>1.6</maven.compiler.source> - <maven.compiler.target>1.6</maven.compiler.target> - - <commons.componentid>jcs</commons.componentid> - <commons.release.version>2.0</commons.release.version> - <commons.release.desc>(Java 6.0+)</commons.release.desc> - <!-- The RC version used in the staging repository URL. --> - <commons.rc.version>RC1</commons.rc.version> - <commons.jira.id>JCS</commons.jira.id> - <commons.site.path>commons-jcs</commons.site.path> - <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${commons.site.path}</commons.scmPubUrl> - <!-- Ensure copies work OK (can be removed later when this is in parent POM) --> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - <commons.encoding>UTF-8</commons.encoding> - <commons.javadoc.java.link>http://docs.oracle.com/javase/6/docs/api/</commons.javadoc.java.link> - - <test.type>Unit</test.type> - </properties> - -</project> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache 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.apache.org/licenses/LICENSE-2.0 + + 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.apache.commons</groupId> + <artifactId>commons-parent</artifactId> + <version>33</version> + </parent> + + <groupId>org.apache.commons</groupId> + <artifactId>commons-jcs</artifactId> + <packaging>jar</packaging> + <version>2.0-SNAPSHOT</version> + <name>Commons JCS</name> + <url>http://commons.apache.org/proper/commons-jcs/</url> + <description>Apache Commons JCS is a distributed, versatile caching system.</description> + <inceptionYear>2002</inceptionYear> + + <dependencies> + + <!-- REQUIRED FOR JCS CORE --> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1.3</version> + </dependency> + + <!-- JDBC DISK CACHE --> + <dependency> + <groupId>commons-dbcp</groupId> + <artifactId>commons-dbcp</artifactId> + <version>1.3</version> + <optional>true</optional> + </dependency> + + <!-- JDBC DISK CACHE --> + <dependency> + <groupId>commons-pool</groupId> + <artifactId>commons-pool</artifactId> + <version>1.5.4</version> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <version>1.7.3.3</version> + <!-- <version>1.8.0.7</version> --> + <optional>true</optional> + </dependency> + + <!-- For comparative performance tests only --> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.2.1</version> + <scope>test</scope> + </dependency> + + <!-- Test dependencies --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.16</version> + <scope>test</scope> + </dependency> + +<!-- Exclude for now --> + <!-- dependency> + <groupId>org.jgroups</groupId> + <artifactId>jgroups</artifactId> + <version>3.4.1.Final</version> + <optional>true</optional> + </dependency --> + + <dependency> + <groupId>org.apache.velocity</groupId> + <artifactId>velocity-tools</artifactId> + <version>2.0</version> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>3.0.1</version> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.5</version> + <optional>true</optional> + </dependency> + + </dependencies> + + <issueManagement> + <system>jira</system> + <url>http://issues.apache.org/jira/browse/JCS</url> + </issueManagement> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/jcs/trunk</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/jcs/trunk</developerConnection> + <url>http://svn.apache.org/viewvc/commons/proper/jcs/trunk</url> + </scm> + + <mailingLists> + <mailingList> + <name>Jakarta JCS User List Archive</name> + <subscribe></subscribe> + <unsubscribe></unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/jakarta-jcs-users/</archive> + </mailingList> + <mailingList> + <name>Jakarta JCS Developer List Archive</name> + <subscribe></subscribe> + <unsubscribe></unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/jakarta-jcs-dev/</archive> + </mailingList> + <mailingList> + <name>OLD User List Archive</name> + <subscribe></subscribe> + <unsubscribe></unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/jakarta-turbine-jcs-user/</archive> + </mailingList> + <mailingList> + <name>OLD Developer List Archive</name> + <subscribe></subscribe> + <unsubscribe></unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/jakarta-turbine-jcs-dev/</archive> + </mailingList> + <mailingList> + <name>Commons User List</name> + <subscribe>user-subscr...@commons.apache.org</subscribe> + <unsubscribe>user-unsubscr...@commons.apache.org</unsubscribe> + <post>u...@commons.apache.org</post> + <archive>http://mail-archives.apache.org/mod_mbox/commons-user/</archive> + <otherArchives> + <otherArchive>http://markmail.org/list/org.apache.commons.users/</otherArchive> + <otherArchive>http://old.nabble.com/Commons---User-f319.html</otherArchive> + <otherArchive>http://www.mail-archive.com/user@commons.apache.org/</otherArchive> + <otherArchive>http://news.gmane.org/gmane.comp.jakarta.commons.user</otherArchive> + </otherArchives> + </mailingList> + <mailingList> + <name>Commons Dev List</name> + <subscribe>dev-subscr...@commons.apache.org</subscribe> + <unsubscribe>dev-unsubscr...@commons.apache.org</unsubscribe> + <post>d...@commons.apache.org</post> + <archive>http://mail-archives.apache.org/mod_mbox/commons-dev/</archive> + <otherArchives> + <otherArchive>http://markmail.org/list/org.apache.commons.dev/</otherArchive> + <otherArchive>http://old.nabble.com/Commons---Dev-f317.html</otherArchive> + <otherArchive>http://www.mail-archive.com/dev@commons.apache.org/</otherArchive> + <otherArchive>http://news.gmane.org/gmane.comp.jakarta.commons.devel</otherArchive> + </otherArchives> + </mailingList> + <mailingList> + <name>Commons Issues List</name> + <subscribe>issues-subscr...@commons.apache.org</subscribe> + <unsubscribe>issues-unsubscr...@commons.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/commons-issues/</archive> + <otherArchives> + <otherArchive>http://markmail.org/list/org.apache.commons.issues/</otherArchive> + <otherArchive>http://old.nabble.com/Commons---Issues-f25499.html</otherArchive> + <otherArchive>http://www.mail-archive.com/issues@commons.apache.org/</otherArchive> + </otherArchives> + </mailingList> + <mailingList> + <name>Commons Commits List</name> + <subscribe>commits-subscr...@commons.apache.org</subscribe> + <unsubscribe>commits-unsubscr...@commons.apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/commons-commits/</archive> + <otherArchives> + <otherArchive>http://markmail.org/list/org.apache.commons.commits/</otherArchive> + <otherArchive>http://www.mail-archive.com/commits@commons.apache.org/</otherArchive> + </otherArchives> + </mailingList> + <mailingList> + <name>Apache Announce List</name> + <subscribe>announce-subscr...@apache.org</subscribe> + <unsubscribe>announce-unsubscr...@apache.org</unsubscribe> + <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive> + <otherArchives> + <otherArchive>http://markmail.org/list/org.apache.announce/</otherArchive> + <otherArchive>http://old.nabble.com/Apache-News-and-Announce-f109.html</otherArchive> + <otherArchive>http://www.mail-archive.com/announce@apache.org/</otherArchive> + <otherArchive>http://news.gmane.org/gmane.comp.apache.announce</otherArchive> + </otherArchives> + </mailingList> + </mailingLists> + + <developers> + <developer> + <id>asmuts</id> + <name>Aaron Smuts</name> + <email>asm...@apache.org</email> + <organization /> + </developer> + <developer> + <id>jtaylor</id> + <name>James Taylor</name> + <email>ja...@jamestaylor.org</email> + <organization /> + </developer> + <developer> + <id>hchar</id> + <name>Hanson Char</name> + <email>hc...@apache.org</email> + <organization /> + </developer> + <developer> + <id>tsavo</id> + <name>Travis Savo</name> + <email>ts...@ifilm.com</email> + <organization>IFilm</organization> + </developer> + <developer> + <id>tv</id> + <name>Thomas Vandahl</name> + <email>t...@apache.org</email> + <organization /> + </developer> + </developers> + + <contributors> + <contributor> + <name>Scott Eade</name> + <email>se...@backstagetech.com.au</email> + </contributor> + <contributor> + <name>Michael Stevens</name> + <email>mstev...@etla.org</email> + </contributor> + </contributors> + + <build> + <sourceDirectory>src/java</sourceDirectory> + <testSourceDirectory>src/test</testSourceDirectory> + <testResources> + <testResource> + <directory>src/test-conf</directory> + <includes> + <include>**/*.properties</include> + <include>**/*.ccf</include> + </includes> + </testResource> + </testResources> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${commons.surefire.version}</version> + <configuration> + <argLine>-Xmx256m -Djava.security.manager -Djava.security.policy=${basedir}/src/conf/cache.policy</argLine> + <forkMode>pertest</forkMode> + <includes> + <include>**/*UnitTest.java</include> + </includes> + <excludes> + <!-- + Several of the test cases rely on background tasks that are timing + sensitive. + --> + <!-- You need to manually run these test cases. --> + <exclude>**/BlockDiskElementDescriptorUnitTest.java</exclude> + <exclude>**/HSQLDiskCacheConcurrentUnitTest.java</exclude> + <exclude>**/HSQLDiskCacheUnitTest.java</exclude> + <exclude>**/IndexedDiskCacheOptimizationUnitTest.java</exclude> + <exclude>**/TestTCPLateralUnitTest.java</exclude> + <exclude>**/UDPDiscoveryUnitTest.java</exclude> + <!-- Causes hang in Continuum --> + <exclude>**/UDPDiscoverySenderUnitTest.java</exclude> + <!-- The ones that fail may be different for you. --> + <!-- <exclude>**/JDBCDiskCacheRemovalUnitTest.java</exclude> --> + <!-- <exclude>**/JDBCDiskCacheUnitTest.java</exclude> --> + </excludes> + <source>${maven.compiler.source}</source> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>rmic-maven-plugin</artifactId> + <version>1.1</version> + </plugin> + </plugins> + </pluginManagement> + <plugins> + <!-- We need to generate some stub/skel classes with RMIC --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>rmic-maven-plugin</artifactId> + <executions> + <execution> + <id>rmic</id> + <goals> + <goal>rmic</goal> + </goals> + <configuration> + <includes> + <include>**/RemoteCacheListener.class</include> + <include>**/RemoteCacheServer.class</include> + </includes> + <outputDirectory>${project.build.outputDirectory}</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>3.1</version> + <configuration> + <targetJdk>1.6</targetJdk> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>2.5.3</version> + </plugin> + </plugins> + </reporting> + + <profiles> + <profile> + <!-- Override Commons parent release profile --> + <id>release</id> + <build> + <plugins> + <plugin> + <!-- build the source and binary distribution packages --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <!-- only the parent has assembly descriptors --> + <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> + <descriptors> + <descriptor>src/assembly/bin.xml</descriptor> + <descriptor>src/assembly/src.xml</descriptor> + </descriptors> + <tarLongFileFormat>gnu</tarLongFileFormat> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + + <properties> + + <!-- Default configuration for compiler source and target JVM --> + <maven.compiler.sourceEncoding>UTF-8</maven.compiler.sourceEncoding> + <maven.compiler.source>1.6</maven.compiler.source> + <maven.compiler.target>1.6</maven.compiler.target> + + <commons.componentid>jcs</commons.componentid> + <commons.release.version>2.0</commons.release.version> + <commons.release.desc>(Java 6.0+)</commons.release.desc> + <!-- The RC version used in the staging repository URL. --> + <commons.rc.version>RC1</commons.rc.version> + <commons.jira.id>JCS</commons.jira.id> + <commons.site.path>commons-jcs</commons.site.path> + <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${commons.site.path}</commons.scmPubUrl> + <!-- Ensure copies work OK (can be removed later when this is in parent POM) --> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <commons.encoding>UTF-8</commons.encoding> + <commons.javadoc.java.link>http://docs.oracle.com/javase/6/docs/api/</commons.javadoc.java.link> + + <test.type>Unit</test.type> + </properties> + +</project> Propchange: commons/proper/jcs/trunk/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/src/assembly/bin.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/src/assembly/src.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/src/changes/changes.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/src/scripts/remoteCacheStats.sh ------------------------------------------------------------------------------ svn:eol-style = LF Propchange: commons/proper/jcs/trunk/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/src/test-conf/thread_pool.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/BlockDiskCache.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: commons/proper/jcs/trunk/xdocs/CacheEventLogging.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/xdocs/CacheEventLogging.xml?rev=1583472&r1=1583471&r2=1583472&view=diff ============================================================================== --- commons/proper/jcs/trunk/xdocs/CacheEventLogging.xml (original) +++ commons/proper/jcs/trunk/xdocs/CacheEventLogging.xml Mon Mar 31 21:44:36 2014 @@ -1,61 +1,61 @@ -<?xml version="1.0"?> - <!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to you under the Apache 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.apache.org/licenses/LICENSE-2.0 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. - --> -<document> - <properties> - <title>Cache Event Logging</title> - <author email="asm...@apache.com">Aaron Smuts</author> - </properties> - <body> - <section name="Cache Event Logging"> - <p> JCS allows you to implement custom event loggers. Most of the - auxiliaries will log ICacheEvents (eg. update, get, getMultiple, remove, - removeAll, and dispose) to an injected event logger. By default the - log calls balk. But if you inject a logger, you can add monitoring - to any auxiliary. Most auxiliaries also log key application events - and critical errors to the same logger.</p> - <p> - To inject a custom event logger, you simply need to implement the - <code>org.apache.commons.jcs.engine.logging.behavior.ICacheEventLogger - </code> - interface and add a couple of lines to the cache.ccf file. - </p> - <p> During configuration, JCS will look for event loggers configured - for each auxiliary. JCS will set any custom properties. For - instance, to add debug event logging to a remote cache client, you - could do the following:</p> - <source><![CDATA[ - . . . - jcs.auxiliary.RC=org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory -jcs.auxiliary.RC.attributes=org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes -jcs.auxiliary.RC.attributes.FailoverServers=localhost:1101,localhost:1102 -jcs.auxiliary.RC.attributes.LocalPort=1201 -jcs.auxiliary.RC.attributes.RemoveUponRemotePut=false -# jcs.auxiliary.RC.attributes.RemoteServiceName=RemoteCache -# -1 means no timeout, this is the default -# if the timeout is -1, no threadpool will be used. -jcs.auxiliary.RC.attributes.GetTimeoutMillis=500 -jcs.auxiliary.RC.attributes.ThreadPoolName=remote_cache_client -jcs.auxiliary.RC.attributes.GetOnly=false -jcs.auxiliary.RC.cacheeventlogger=org.apache.commons.jcs.engine.logging.CacheEventLoggerDebugLogger -jcs.auxiliary.RC.cacheeventlogger.attributes.logCategoryName=test.RCCEventLogCategory - . . . - ]]></source> - <p> The attribute "logCateoryName" is a property of this - implementation. You can configure any properties on your - implementation in the same way.</p> - </section> - </body> +<?xml version="1.0"?> + <!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to you under the Apache 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.apache.org/licenses/LICENSE-2.0 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. + --> +<document> + <properties> + <title>Cache Event Logging</title> + <author email="asm...@apache.com">Aaron Smuts</author> + </properties> + <body> + <section name="Cache Event Logging"> + <p> JCS allows you to implement custom event loggers. Most of the + auxiliaries will log ICacheEvents (eg. update, get, getMultiple, remove, + removeAll, and dispose) to an injected event logger. By default the + log calls balk. But if you inject a logger, you can add monitoring + to any auxiliary. Most auxiliaries also log key application events + and critical errors to the same logger.</p> + <p> + To inject a custom event logger, you simply need to implement the + <code>org.apache.commons.jcs.engine.logging.behavior.ICacheEventLogger + </code> + interface and add a couple of lines to the cache.ccf file. + </p> + <p> During configuration, JCS will look for event loggers configured + for each auxiliary. JCS will set any custom properties. For + instance, to add debug event logging to a remote cache client, you + could do the following:</p> + <source><![CDATA[ + . . . + jcs.auxiliary.RC=org.apache.commons.jcs.auxiliary.remote.RemoteCacheFactory +jcs.auxiliary.RC.attributes=org.apache.commons.jcs.auxiliary.remote.RemoteCacheAttributes +jcs.auxiliary.RC.attributes.FailoverServers=localhost:1101,localhost:1102 +jcs.auxiliary.RC.attributes.LocalPort=1201 +jcs.auxiliary.RC.attributes.RemoveUponRemotePut=false +# jcs.auxiliary.RC.attributes.RemoteServiceName=RemoteCache +# -1 means no timeout, this is the default +# if the timeout is -1, no threadpool will be used. +jcs.auxiliary.RC.attributes.GetTimeoutMillis=500 +jcs.auxiliary.RC.attributes.ThreadPoolName=remote_cache_client +jcs.auxiliary.RC.attributes.GetOnly=false +jcs.auxiliary.RC.cacheeventlogger=org.apache.commons.jcs.engine.logging.CacheEventLoggerDebugLogger +jcs.auxiliary.RC.cacheeventlogger.attributes.logCategoryName=test.RCCEventLogCategory + . . . + ]]></source> + <p> The attribute "logCateoryName" is a property of this + implementation. You can configure any properties on your + implementation in the same way.</p> + </section> + </body> </document> \ No newline at end of file Propchange: commons/proper/jcs/trunk/xdocs/CacheEventLogging.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/DownloadPage.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/ElementEventHandling.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/IndexedDiskCacheProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/JCSvsEHCache.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/JDBCDiskCache.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/JDBCDiskCacheProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/LateralJavaGroupsAuxCache.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/LateralTCPProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/MySQLDiskCacheProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/RegionProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/RemoteCacheProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/RemoteHttpCacheProperties.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: commons/proper/jcs/trunk/xdocs/download_jcs.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/xdocs/download_jcs.xml?rev=1583472&r1=1583471&r2=1583472&view=diff ============================================================================== --- commons/proper/jcs/trunk/xdocs/download_jcs.xml (original) +++ commons/proper/jcs/trunk/xdocs/download_jcs.xml Mon Mar 31 21:44:36 2014 @@ -1,138 +1,138 @@ -<?xml version="1.0"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with -this work for additional information regarding copyright ownership. -The ASF licenses this file to You under the Apache 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.apache.org/licenses/LICENSE-2.0 - -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. ---> -<!-- - +======================================================================+ - |**** ****| - |**** THIS FILE IS GENERATED BY THE COMMONS BUILD PLUGIN ****| - |**** DO NOT EDIT DIRECTLY ****| - |**** ****| - +======================================================================+ - | TEMPLATE FILE: download-page-template.xml | - | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | - +======================================================================+ - | | - | 1) Re-generate using: mvn commons:download-page | - | | - | 2) Set the following properties in the component's pom: | - | - commons.componentid (required, alphabetic, lower case) | - | - commons.release.version (required) | - | - commons.binary.suffix (optional) | - | (defaults to "-bin", set to "" for pre-maven2 releases) | - | | - | 3) Example Properties | - | | - | <properties> | - | <commons.componentid>math</commons.componentid> | - | <commons.release.version>1.2</commons.release.version> | - | </properties> | - | | - +======================================================================+ ---> -<document> - <properties> - <title>Download Apache Commons JCS</title> - <author email="d...@commons.apache.org">Commons Documentation Team</author> - </properties> - <body> - <section name="Download Apache Commons JCS"> - <subsection name="Using a Mirror"> - <p> - We recommend you use a mirror to download our release - builds, but you <strong>must</strong> verify the integrity of - the downloaded files using signatures downloaded from our main - distribution directories. Recent releases (48 hours) may not yet - be available from the mirrors. - </p> - - <p> - You are currently using <b>[preferred]</b>. If you - encounter a problem with this mirror, please select another - mirror. If all mirrors are failing, there are <i>backup</i> - mirrors (at the end of the mirrors list) that should be - available. - <br></br> - [if-any logo]<a href="[link]"><img align="right" src="[logo]" border="0"></img></a>[end] - </p> - - <form action="[location]" method="get" id="SelectMirror"> - <p> - Other mirrors: - <select name="Preferred"> - [if-any http] - [for http]<option value="[http]">[http]</option>[end] - [end] - [if-any ftp] - [for ftp]<option value="[ftp]">[ftp]</option>[end] - [end] - [if-any backup] - [for backup]<option value="[backup]">[backup] (backup)</option>[end] - [end] - </select> - <input type="submit" value="Change"></input> - </p> - </form> - - <p> - The <a href="http://www.apache.org/dist/commons/KEYS">KEYS</a> - link links to the code signing keys used to sign the product. - The <code>PGP</code> link downloads the OpenPGP compatible signature from our main site. - The <code>MD5</code> link downloads the checksum from the main site. - </p> - </subsection> - </section> - <section name="Apache Commons JCS 2.0 (Java 6.0+)"> - <subsection name="Binaries"> - <table> - <tr> - <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz">commons-jcs-2.0-bin.tar.gz</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz.md5">md5</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz.asc">pgp</a></td> - </tr> - <tr> - <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-2.0-bin.zip">commons-jcs-2.0-bin.zip</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.zip.md5">md5</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.zip.asc">pgp</a></td> - </tr> - </table> - </subsection> - <subsection name="Source"> - <table> - <tr> - <td><a href="[preferred]/commons/jcs/source/commons-jcs-2.0-src.tar.gz">commons-jcs-2.0-src.tar.gz</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.tar.gz.md5">md5</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.tar.gz.asc">pgp</a></td> - </tr> - <tr> - <td><a href="[preferred]/commons/jcs/source/commons-jcs-2.0-src.zip">commons-jcs-2.0-src.zip</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.zip.md5">md5</a></td> - <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.zip.asc">pgp</a></td> - </tr> - </table> - </subsection> - </section> - <section name="Archives"> - <p> - Older releases can be obtained from the archives. - </p> - <ul> - <li class="download"><a href="[preferred]/commons/jcs/">browse download area</a></li> - <li><a href="http://archive.apache.org/dist/commons/jcs/">archives...</a></li> - </ul> - </section> - </body> -</document> +<?xml version="1.0"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache 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.apache.org/licenses/LICENSE-2.0 + +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. +--> +<!-- + +======================================================================+ + |**** ****| + |**** THIS FILE IS GENERATED BY THE COMMONS BUILD PLUGIN ****| + |**** DO NOT EDIT DIRECTLY ****| + |**** ****| + +======================================================================+ + | TEMPLATE FILE: download-page-template.xml | + | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | + +======================================================================+ + | | + | 1) Re-generate using: mvn commons:download-page | + | | + | 2) Set the following properties in the component's pom: | + | - commons.componentid (required, alphabetic, lower case) | + | - commons.release.version (required) | + | - commons.binary.suffix (optional) | + | (defaults to "-bin", set to "" for pre-maven2 releases) | + | | + | 3) Example Properties | + | | + | <properties> | + | <commons.componentid>math</commons.componentid> | + | <commons.release.version>1.2</commons.release.version> | + | </properties> | + | | + +======================================================================+ +--> +<document> + <properties> + <title>Download Apache Commons JCS</title> + <author email="d...@commons.apache.org">Commons Documentation Team</author> + </properties> + <body> + <section name="Download Apache Commons JCS"> + <subsection name="Using a Mirror"> + <p> + We recommend you use a mirror to download our release + builds, but you <strong>must</strong> verify the integrity of + the downloaded files using signatures downloaded from our main + distribution directories. Recent releases (48 hours) may not yet + be available from the mirrors. + </p> + + <p> + You are currently using <b>[preferred]</b>. If you + encounter a problem with this mirror, please select another + mirror. If all mirrors are failing, there are <i>backup</i> + mirrors (at the end of the mirrors list) that should be + available. + <br></br> + [if-any logo]<a href="[link]"><img align="right" src="[logo]" border="0"></img></a>[end] + </p> + + <form action="[location]" method="get" id="SelectMirror"> + <p> + Other mirrors: + <select name="Preferred"> + [if-any http] + [for http]<option value="[http]">[http]</option>[end] + [end] + [if-any ftp] + [for ftp]<option value="[ftp]">[ftp]</option>[end] + [end] + [if-any backup] + [for backup]<option value="[backup]">[backup] (backup)</option>[end] + [end] + </select> + <input type="submit" value="Change"></input> + </p> + </form> + + <p> + The <a href="http://www.apache.org/dist/commons/KEYS">KEYS</a> + link links to the code signing keys used to sign the product. + The <code>PGP</code> link downloads the OpenPGP compatible signature from our main site. + The <code>MD5</code> link downloads the checksum from the main site. + </p> + </subsection> + </section> + <section name="Apache Commons JCS 2.0 (Java 6.0+)"> + <subsection name="Binaries"> + <table> + <tr> + <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz">commons-jcs-2.0-bin.tar.gz</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz.md5">md5</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.tar.gz.asc">pgp</a></td> + </tr> + <tr> + <td><a href="[preferred]/commons/jcs/binaries/commons-jcs-2.0-bin.zip">commons-jcs-2.0-bin.zip</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.zip.md5">md5</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/binaries/commons-jcs-2.0-bin.zip.asc">pgp</a></td> + </tr> + </table> + </subsection> + <subsection name="Source"> + <table> + <tr> + <td><a href="[preferred]/commons/jcs/source/commons-jcs-2.0-src.tar.gz">commons-jcs-2.0-src.tar.gz</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.tar.gz.md5">md5</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.tar.gz.asc">pgp</a></td> + </tr> + <tr> + <td><a href="[preferred]/commons/jcs/source/commons-jcs-2.0-src.zip">commons-jcs-2.0-src.zip</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.zip.md5">md5</a></td> + <td><a href="http://www.apache.org/dist/commons/jcs/source/commons-jcs-2.0-src.zip.asc">pgp</a></td> + </tr> + </table> + </subsection> + </section> + <section name="Archives"> + <p> + Older releases can be obtained from the archives. + </p> + <ul> + <li class="download"><a href="[preferred]/commons/jcs/">browse download area</a></li> + <li><a href="http://archive.apache.org/dist/commons/jcs/">archives...</a></li> + </ul> + </section> + </body> +</document> Propchange: commons/proper/jcs/trunk/xdocs/download_jcs.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: commons/proper/jcs/trunk/xdocs/getting_started/intro.xml ------------------------------------------------------------------------------ svn:eol-style = native