I modifed the Maven build to use only the geronimo-spec for
activation, rather than the implementation, which cleaned up a bunch
of unnecessary transitive dependencies, and keeps it in line with the
Ant build.
[[[
Changed dependencies from geronimo implementation to geronimio-spec
for activation.
* pom.xml - Changed dependencyManagement activation dependency declaration.
* core/pom.xml - Changed activation dependency declaration.
]]]
--
Stephen Duncan Jr
www.stephenduncanjr.com
Index: java/trunk/core/pom.xml
===================================================================
--- java/trunk/core/pom.xml (revision 417921)
+++ java/trunk/core/pom.xml (working copy)
@@ -21,8 +21,8 @@
<artifactId>junit</artifactId>
</dependency>
<dependency>
- <groupId>geronimo</groupId>
- <artifactId>geronimo-activation</artifactId>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-activation_1.0.2_spec</artifactId>
</dependency>
</dependencies>
</project>
Index: java/trunk/pom.xml
===================================================================
--- java/trunk/pom.xml (revision 417973)
+++ java/trunk/pom.xml (working copy)
@@ -105,8 +105,8 @@
</dependency>
<dependency>
- <groupId>geronimo</groupId>
- <artifactId>geronimo-activation</artifactId>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-activation_1.0.2_spec</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>