Yep, turns out none of the non pom.xml files (like dependencies.xml, geronimo-plugins.xml, ...) were updated from version=2.2-SNAPSHOT to 3.0-SNAPSHOT, so it was pulling in bad depends based on an old 2.2-SNAPSHOT build in the snapshot repo.....

Used the perl script to perform a bulk update and committed the updates in r806161.

-Donald

David Jencks wrote:
something's wrong here.

We shouldn't need the jaxb compiler at runtime at all, and this spec jar doesn't exist.... its geronimo-jaspic_1.0_spec.

david jencks

On Aug 19, 2009, at 8:02 PM, [email protected] wrote:

Author: dwoods
Date: Thu Aug 20 03:02:21 2009
New Revision: 806027

URL: http://svn.apache.org/viewvc?rev=806027&view=rev
Log:
fix required dependencies.xml changes

Modified:
geronimo/server/trunk/framework/configs/j2ee-security/src/main/history/dependencies.xml

Modified: geronimo/server/trunk/framework/configs/j2ee-security/src/main/history/dependencies.xml URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/configs/j2ee-security/src/main/history/dependencies.xml?rev=806027&r1=806026&r2=806027&view=diff ============================================================================== --- geronimo/server/trunk/framework/configs/j2ee-security/src/main/history/dependencies.xml (original) +++ geronimo/server/trunk/framework/configs/j2ee-security/src/main/history/dependencies.xml Thu Aug 20 03:02:21 2009
@@ -3,10 +3,15 @@
    <module-id>
        <groupId>org.apache.geronimo.framework</groupId>
        <artifactId>j2ee-security</artifactId>
-        <version>2.2-SNAPSHOT</version>
+        <version>3.0-SNAPSHOT</version>
        <type>car</type>
    </module-id>
    <dependency>
+        <groupId>com.sun.xml.bind</groupId>
+        <artifactId>jaxb-xjc</artifactId>
+        <type>jar</type>
+    </dependency>
+    <dependency>
        <groupId>org.apache.geronimo.components</groupId>
        <artifactId>geronimo-jaspi</artifactId>
        <type>jar</type>
@@ -26,4 +31,9 @@
        <artifactId>rmi-naming</artifactId>
        <type>car</type>
    </dependency>
+    <dependency>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-jaspi_1.0_spec</artifactId>
+        <type>jar</type>
+    </dependency>
</plugin-artifact>




Reply via email to