Author: olamy Date: Tue Apr 29 07:51:37 2014 New Revision: 1590900 URL: http://svn.apache.org/r1590900 Log: cleanup dependencies
Modified: commons/proper/jcs/trunk/commons-jcs-tck-tests/pom.xml commons/proper/jcs/trunk/pom.xml Modified: commons/proper/jcs/trunk/commons-jcs-tck-tests/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-tck-tests/pom.xml?rev=1590900&r1=1590899&r2=1590900&view=diff ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-tck-tests/pom.xml (original) +++ commons/proper/jcs/trunk/commons-jcs-tck-tests/pom.xml Tue Apr 29 07:51:37 2014 @@ -22,8 +22,6 @@ <properties> - <jsr107.api.version>1.0.0</jsr107.api.version> - <implementation-groupId>${project.groupId}</implementation-groupId> <implementation-artifactId>commons-jcs</implementation-artifactId> <implementation-version>${project.version}</implementation-version> Modified: commons/proper/jcs/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/pom.xml?rev=1590900&r1=1590899&r2=1590900&view=diff ============================================================================== --- commons/proper/jcs/trunk/pom.xml (original) +++ commons/proper/jcs/trunk/pom.xml Tue Apr 29 07:51:37 2014 @@ -273,12 +273,6 @@ </dependency> <dependency> - <groupId>javax.cache</groupId> - <artifactId>cache-api</artifactId> - <version>1.0.0</version> - <scope>provided</scope> - </dependency> - <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jcdi_1.0_spec</artifactId> <version>1.0</version> @@ -291,20 +285,39 @@ <scope>provided</scope> </dependency> - <!-- to debug tcks --> + <dependency> + <groupId>javax.cache</groupId> + <artifactId>test-domain</artifactId> + <version>${jsr107.api.version}</version> + </dependency> + + <dependency> + <groupId>javax.cache</groupId> + <artifactId>app-domain</artifactId> + <version>${jsr107.api.version}</version> + </dependency> + <dependency> + <groupId>javax.cache</groupId> + <artifactId>cache-api</artifactId> + <version>${jsr107.api.version}</version> + <scope>provided</scope> + </dependency> + <dependency> <groupId>javax.cache</groupId> <artifactId>cache-tests</artifactId> - <version>1.0.0</version> - <classifier>tests</classifier> + <version>${jsr107.api.version}</version> <scope>test</scope> </dependency> + <dependency> <groupId>javax.cache</groupId> <artifactId>cache-tests</artifactId> - <version>1.0.0</version> + <classifier>tests</classifier> <scope>test</scope> + <version>${jsr107.api.version}</version> </dependency> + </dependencies> </dependencyManagement> @@ -391,6 +404,8 @@ <commons.encoding>UTF-8</commons.encoding> <commons.javadoc.java.link>http://docs.oracle.com/javase/6/docs/api/</commons.javadoc.java.link> + <jsr107.api.version>1.0.0</jsr107.api.version> + <test.type>Unit</test.type> </properties>