Author: olamy Date: Wed Apr 30 01:10:03 2014 New Revision: 1591164 URL: http://svn.apache.org/r1591164 Log: add a maven build for file cache
Added: commons/proper/jcs/trunk/sandbox/filecache/pom.xml - copied, changed from r1591163, commons/proper/jcs/trunk/sandbox/pom.xml Modified: commons/proper/jcs/trunk/commons-jcs-core/pom.xml commons/proper/jcs/trunk/pom.xml commons/proper/jcs/trunk/sandbox/pom.xml Modified: commons/proper/jcs/trunk/commons-jcs-core/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/pom.xml?rev=1591164&r1=1591163&r2=1591164&view=diff ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-core/pom.xml (original) +++ commons/proper/jcs/trunk/commons-jcs-core/pom.xml Wed Apr 30 01:10:03 2014 @@ -187,6 +187,17 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> Modified: commons/proper/jcs/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/pom.xml?rev=1591164&r1=1591163&r2=1591164&view=diff ============================================================================== --- commons/proper/jcs/trunk/pom.xml (original) +++ commons/proper/jcs/trunk/pom.xml Wed Apr 30 01:10:03 2014 @@ -191,6 +191,14 @@ <dependency> <groupId>${project.groupId}</groupId> + <artifactId>commons-jcs-core</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>commons-jcs-jcache</artifactId> <version>${project.version}</version> </dependency> Copied: commons/proper/jcs/trunk/sandbox/filecache/pom.xml (from r1591163, commons/proper/jcs/trunk/sandbox/pom.xml) URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/sandbox/filecache/pom.xml?p2=commons/proper/jcs/trunk/sandbox/filecache/pom.xml&p1=commons/proper/jcs/trunk/sandbox/pom.xml&r1=1591163&r2=1591164&rev=1591164&view=diff ============================================================================== --- commons/proper/jcs/trunk/sandbox/pom.xml (original) +++ commons/proper/jcs/trunk/sandbox/filecache/pom.xml Wed Apr 30 01:10:03 2014 @@ -23,17 +23,30 @@ <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.commons</groupId> - <artifactId>commons-jcs</artifactId> + <artifactId>commons-jcs-sandbox</artifactId> <version>2.0-SNAPSHOT</version> </parent> - <artifactId>commons-jcs-sandbox</artifactId> - <packaging>pom</packaging> + <artifactId>commons-jcs-filecache</artifactId> - <name>Apache Commons JCS :: Sandbox</name> + <name>Apache Commons JCS :: Sandbox :: FileCache</name> + + <dependencies> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-jcs-core</artifactId> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-jcs-core</artifactId> + <type>test-jar</type> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + </dependencies> - <modules> - <module>yajcache</module> - </modules> </project> \ No newline at end of file Modified: commons/proper/jcs/trunk/sandbox/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/sandbox/pom.xml?rev=1591164&r1=1591163&r2=1591164&view=diff ============================================================================== --- commons/proper/jcs/trunk/sandbox/pom.xml (original) +++ commons/proper/jcs/trunk/sandbox/pom.xml Wed Apr 30 01:10:03 2014 @@ -34,6 +34,7 @@ <modules> <module>yajcache</module> + <module>filecache</module> </modules> </project> \ No newline at end of file