Author: gawor Date: Mon Jan 5 08:19:35 2009 New Revision: 731610 URL: http://svn.apache.org/viewvc?rev=731610&view=rev Log: drop ${axiom.version} and use ${version} instead
Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-dom/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-impl/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml webservices/commons/trunk/modules/axiom/pom.xml Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml Mon Jan 5 08:19:35 2009 @@ -23,7 +23,6 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> <version>SNAPSHOT</version> - <!-- Should better be ${axiom.version} --> </parent> <artifactId>axiom-api</artifactId> <name>Axiom API</name> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-c14n/pom.xml Mon Jan 5 08:19:35 2009 @@ -34,12 +34,12 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> </dependency> <dependency> <groupId>junit</groupId> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-dom/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-dom/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-dom/pom.xml Mon Jan 5 08:19:35 2009 @@ -23,7 +23,6 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> <version>SNAPSHOT</version> - <!-- Should better be ${axiom.version} --> </parent> <artifactId>axiom-dom</artifactId> <name>Axiom DOM</name> @@ -33,7 +32,7 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> @@ -63,7 +62,7 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> <classifier>tests</classifier> - <version>${axiom.version}</version> + <version>${version}</version> <scope>test</scope> </dependency> </dependencies> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-impl/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-impl/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-impl/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-impl/pom.xml Mon Jan 5 08:19:35 2009 @@ -23,7 +23,6 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> <version>SNAPSHOT</version> - <!-- Should better be ${axiom.version} --> </parent> <artifactId>axiom-impl</artifactId> <name>Axiom Impl</name> @@ -33,7 +32,7 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> @@ -63,7 +62,7 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> <classifier>tests</classifier> - <version>${axiom.version}</version> + <version>${version}</version> <scope>test</scope> </dependency> </dependencies> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml Mon Jan 5 08:19:35 2009 @@ -23,7 +23,6 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> <version>SNAPSHOT</version> - <!-- Should better be ${axiom.version} --> </parent> <artifactId>axiom-integration</artifactId> <name>Axiom Integration Test Suite</name> @@ -36,12 +35,12 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-dom</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> </dependency> <dependency> <groupId>junit</groupId> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml Mon Jan 5 08:19:35 2009 @@ -23,7 +23,6 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> <version>SNAPSHOT</version> - <!-- Should better be ${axiom.version} --> </parent> <artifactId>axiom-tests</artifactId> <name>Axiom Test Suite</name> @@ -38,7 +37,7 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> <exclusions> <exclusion> <groupId>org.apache.geronimo.specs</groupId> @@ -49,7 +48,7 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> <exclusions> <exclusion> <groupId>org.apache.geronimo.specs</groupId> @@ -60,7 +59,7 @@ <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-dom</artifactId> - <version>${axiom.version}</version> + <version>${version}</version> <exclusions> <exclusion> <groupId>org.apache.geronimo.specs</groupId> @@ -106,14 +105,14 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> <classifier>tests</classifier> - <version>${axiom.version}</version> + <version>${version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-dom</artifactId> <classifier>tests</classifier> - <version>${axiom.version}</version> + <version>${version}</version> <scope>test</scope> </dependency> </dependencies> Modified: webservices/commons/trunk/modules/axiom/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/pom.xml?rev=731610&r1=731609&r2=731610&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/pom.xml Mon Jan 5 08:19:35 2009 @@ -519,7 +519,7 @@ </modules> <properties> <axiom.version>${pom.version}</axiom.version> - <axiom.osgi.version>1.2.6</axiom.osgi.version> + <axiom.osgi.version>${pom.version}</axiom.osgi.version> <stax.impl.groupid>org.codehaus.woodstox</stax.impl.groupid> <stax.impl.artifact>wstx-asl</stax.impl.artifact> <stax.impl.version>3.2.4</stax.impl.version>