- Revision
- 118
- Author
- mauro
- Date
- 2007-05-31 03:31:21 -0500 (Thu, 31 May 2007)
Log Message
Refactored core to declare the versions of all transitive dependencies, and for dependend modules to not have to declare these.
Modified Paths
Diff
Modified: trunk/core/pom.xml (117 => 118)
--- trunk/core/pom.xml 2007-05-31 07:54:54 UTC (rev 117) +++ trunk/core/pom.xml 2007-05-31 08:31:21 UTC (rev 118) @@ -14,10 +14,12 @@ <dependency> <groupId>ognl</groupId> <artifactId>ognl</artifactId> + <version>2.6.9</version> </dependency> <dependency> <groupId>org.picocontainer</groupId> <artifactId>picocontainer</artifactId> + <version>1.3</version> </dependency> <dependency> <groupId>javax.servlet</groupId> @@ -25,12 +27,8 @@ </dependency> <dependency> <groupId>com.thoughtworks.paranamer</groupId> - <artifactId>paranamer</artifactId> + <artifactId>paranamer-asm</artifactId> </dependency> - <dependency> - <groupId>asm</groupId> - <artifactId>asm</artifactId> - </dependency> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId>
Modified: trunk/examples/simple-example/pom.xml (117 => 118)
--- trunk/examples/simple-example/pom.xml 2007-05-31 07:54:54 UTC (rev 117) +++ trunk/examples/simple-example/pom.xml 2007-05-31 08:31:21 UTC (rev 118) @@ -27,14 +27,6 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>org.picocontainer</groupId> - <artifactId>picocontainer</artifactId> - </dependency> - <dependency> - <groupId>ognl</groupId> - <artifactId>ognl</artifactId> - </dependency> - <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <scope>runtime</scope>
Modified: trunk/extensions/webcontainer/pom.xml (117 => 118)
--- trunk/extensions/webcontainer/pom.xml 2007-05-31 07:54:54 UTC (rev 117) +++ trunk/extensions/webcontainer/pom.xml 2007-05-31 08:31:21 UTC (rev 118) @@ -22,26 +22,11 @@ <version>1.2-SNAPSHOT</version> </dependency> <dependency> - <groupId>org.nanocontainer</groupId> - <artifactId>nanocontainer-groovy</artifactId> - <version>1.2-SNAPSHOT</version> + <groupId>org.mortbay.jetty</groupId> + <artifactId>servlet-api-2.5</artifactId> + <version>6.1.3</version> + <scope>provided</scope> </dependency> - <dependency> - <groupId>org.nanocontainer</groupId> - <artifactId>nanocontainer</artifactId> - <version>1.2-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.picocontainer</groupId> - <artifactId>picocontainer</artifactId> - <version>1.3</version> - </dependency> - <dependency> - <groupId>org.mortbay.jetty</groupId> - <artifactId>servlet-api-2.5</artifactId> - <version>6.1.3</version> - <scope>provided</scope> - </dependency> <!-- Test-scoped --> <dependency> <groupId>org.mortbay.jetty</groupId>
Modified: trunk/pom.xml (117 => 118)
--- trunk/pom.xml 2007-05-31 07:54:54 UTC (rev 117) +++ trunk/pom.xml 2007-05-31 08:31:21 UTC (rev 118) @@ -22,27 +22,12 @@ <dependencyManagement> <dependencies> <dependency> - <groupId>ognl</groupId> - <artifactId>ognl</artifactId> - <version>2.6.9</version> - </dependency> - <dependency> - <groupId>org.picocontainer</groupId> - <artifactId>picocontainer</artifactId> - <version>1.3</version> - </dependency> - <dependency> <groupId>com.thoughtworks.paranamer</groupId> - <artifactId>paranamer</artifactId> + <artifactId>paranamer-asm</artifactId> <version>1.0-RC-3-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> - <groupId>asm</groupId> - <artifactId>asm</artifactId> - <version>3.0</version> - </dependency> - <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>1.0RC2</version>
To unsubscribe from this list please visit:
