Author: sebb Date: Mon Aug 3 23:02:24 2009 New Revision: 800610 URL: http://svn.apache.org/viewvc?rev=800610&view=rev Log: Use relativePath for access to parent POM Use properties for bsf and JUnit versions
Modified: jakarta/bsf/branches/bsf3.x/bsf-api/pom.xml jakarta/bsf/branches/bsf3.x/bsf-engines/pom.xml jakarta/bsf/branches/bsf3.x/bsf-utils/pom.xml jakarta/bsf/branches/bsf3.x/distribution/pom.xml jakarta/bsf/branches/bsf3.x/pom.xml jakarta/bsf/branches/bsf3.x/testing/e4x-1.6R7-Axiom/pom.xml jakarta/bsf/branches/bsf3.x/testing/e4x/pom.xml jakarta/bsf/branches/bsf3.x/testing/groovy-1.1/pom.xml jakarta/bsf/branches/bsf3.x/testing/groovy/pom.xml jakarta/bsf/branches/bsf3.x/testing/javascript/pom.xml jakarta/bsf/branches/bsf3.x/testing/jexl/pom.xml jakarta/bsf/branches/bsf3.x/testing/jruby-1.1.2/pom.xml jakarta/bsf/branches/bsf3.x/testing/jruby-1.2.0/pom.xml jakarta/bsf/branches/bsf3.x/testing/jython-2.2/pom.xml jakarta/bsf/branches/bsf3.x/testing/pom.xml jakarta/bsf/branches/bsf3.x/testing/python/pom.xml jakarta/bsf/branches/bsf3.x/testing/ruby/pom.xml Modified: jakarta/bsf/branches/bsf3.x/bsf-api/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/bsf-api/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/bsf-api/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/bsf-api/pom.xml Mon Aug 3 23:02:24 2009 @@ -23,6 +23,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> Modified: jakarta/bsf/branches/bsf3.x/bsf-engines/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/bsf-engines/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/bsf-engines/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/bsf-engines/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> Modified: jakarta/bsf/branches/bsf3.x/bsf-utils/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/bsf-utils/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/bsf-utils/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/bsf-utils/pom.xml Mon Aug 3 23:02:24 2009 @@ -23,6 +23,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,13 +36,13 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-api</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> - </dependency> + </dependency> <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-engines</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> @@ -92,7 +93,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> Modified: jakarta/bsf/branches/bsf3.x/distribution/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/distribution/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/distribution/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/distribution/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> Modified: jakarta/bsf/branches/bsf3.x/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/pom.xml Mon Aug 3 23:02:24 2009 @@ -35,7 +35,6 @@ <properties> <bsf.version>3.0-SNAPSHOT</bsf.version> - <commons-logging.version>1.1.1</commons-logging.version> <junit.version>3.8.2</junit.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> Modified: jakarta/bsf/branches/bsf3.x/testing/e4x-1.6R7-Axiom/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/e4x-1.6R7-Axiom/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/e4x-1.6R7-Axiom/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/e4x-1.6R7-Axiom/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -46,7 +47,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> </dependency> <dependency> @@ -90,7 +91,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> Modified: jakarta/bsf/branches/bsf3.x/testing/e4x/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/e4x/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/e4x/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/e4x/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -47,10 +48,9 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> - <dependency> <groupId>rhino</groupId> <artifactId>js</artifactId> @@ -102,7 +102,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/groovy-1.1/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/groovy-1.1/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/groovy-1.1/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/groovy-1.1/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -46,7 +47,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/groovy/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/groovy/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/groovy/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/groovy/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -140,7 +141,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/javascript/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/javascript/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/javascript/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/javascript/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -47,7 +48,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/jexl/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/jexl/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/jexl/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/jexl/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -47,7 +48,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/jruby-1.1.2/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/jruby-1.1.2/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/jruby-1.1.2/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/jruby-1.1.2/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -47,7 +48,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/jruby-1.2.0/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/jruby-1.2.0/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/jruby-1.2.0/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/jruby-1.2.0/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -47,7 +48,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/jython-2.2/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/jython-2.2/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/jython-2.2/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/jython-2.2/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -47,7 +48,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/pom.xml Mon Aug 3 23:02:24 2009 @@ -24,6 +24,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> </parent> <artifactId>bsf-tests</artifactId> Modified: jakarta/bsf/branches/bsf3.x/testing/python/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/python/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/python/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/python/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -46,7 +47,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -58,7 +59,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> Modified: jakarta/bsf/branches/bsf3.x/testing/ruby/pom.xml URL: http://svn.apache.org/viewvc/jakarta/bsf/branches/bsf3.x/testing/ruby/pom.xml?rev=800610&r1=800609&r2=800610&view=diff ============================================================================== --- jakarta/bsf/branches/bsf3.x/testing/ruby/pom.xml (original) +++ jakarta/bsf/branches/bsf3.x/testing/ruby/pom.xml Mon Aug 3 23:02:24 2009 @@ -22,6 +22,7 @@ <groupId>org.apache.bsf</groupId> <artifactId>parent</artifactId> <version>3.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> @@ -35,7 +36,7 @@ <dependency> <groupId>org.apache.bsf</groupId> <artifactId>bsf-all</artifactId> - <version>3.0-SNAPSHOT</version> + <version>${bsf.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -47,7 +48,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>3.8.2</version> + <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> --------------------------------------------------------------------- To unsubscribe, e-mail: bsf-dev-unsubscr...@jakarta.apache.org For additional commands, e-mail: bsf-dev-h...@jakarta.apache.org