Author: aadamchik
Date: Sun Jul 30 13:00:13 2006
New Revision: 426927
URL: http://svn.apache.org/viewvc?rev=426927&view=rev
Log:
fixing third-level transitive XML dependencies that messed up Eclipse
Modified:
incubator/cayenne/main/trunk/pom.xml
Modified: incubator/cayenne/main/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/pom.xml?rev=426927&r1=426926&r2=426927&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/pom.xml (original)
+++ incubator/cayenne/main/trunk/pom.xml Sun Jul 30 13:00:13 2006
@@ -183,7 +183,6 @@
<dependencies>
<dependency>
- <!-- is and really a dependency or is the jar
here for building -->
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
@@ -208,6 +207,12 @@
</dependency>
<dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib-nodep</artifactId>
+ <version>2.1_3</version>
+ </dependency>
+
+ <dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
@@ -276,7 +281,6 @@
<dependency>
<groupId>jgoodies</groupId>
<artifactId>looks</artifactId>
- <!-- TODO: 1.2.2 is avalibe out in the wild -->
<version>1.3.1</version>
</dependency>
@@ -293,6 +297,12 @@
</dependency>
<dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jpa_3.0_spec</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
@@ -339,24 +349,28 @@
<groupId>jivesoftware</groupId>
<artifactId>smack</artifactId>
<version>2.0.0</version>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>jivesoftware</groupId>
<artifactId>smackx</artifactId>
<version>2.0.0</version>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>1.2.6</version>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>1.2.6</version>
+ <scope>test</scope>
</dependency>
<dependency>
@@ -376,6 +390,20 @@
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>2.0.2</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xerces</artifactId>
+ <version>2.0.2</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>