There's something wrong here. geronimo-management pulls in the ejb
spec. I believe the problem here is that the spec poms are not
published: there's supposed to be a dependency from jsr-77 spec jar
to ejb spec jar.
Please revert this change.
david jencks
On Jun 26, 2006, at 7:41 PM, [EMAIL PROTECTED] wrote:
Author: jdillon
Date: Mon Jun 26 19:41:36 2006
New Revision: 417329
URL: http://svn.apache.org/viewvc?rev=417329&view=rev
Log:
Add j2ee dependency so this module will build
Modified:
geronimo/trunk/modules/j2ee/pom.xml
Modified: geronimo/trunk/modules/j2ee/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/trunk/modules/j2ee/
pom.xml?rev=417329&r1=417328&r2=417329&view=diff
======================================================================
========
--- geronimo/trunk/modules/j2ee/pom.xml (original)
+++ geronimo/trunk/modules/j2ee/pom.xml Mon Jun 26 19:41:36 2006
@@ -21,6 +21,7 @@
<groupId>org.apache.geronimo.modules</groupId>
<artifactId>modules-parent</artifactId>
<version>1.2-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -42,7 +43,9 @@
<!-- ============ -->
<!-- Dependencies -->
<!-- ============ -->
+
<dependencies>
+
<dependency>
<groupId>org.apache.geronimo.modules</groupId>
<artifactId>geronimo-system</artifactId>
@@ -52,6 +55,13 @@
<groupId>org.apache.geronimo.modules</groupId>
<artifactId>geronimo-management</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-ejb_2.1_spec</artifactId>
+ </dependency>
+
</dependencies>
+
</project>