[hibernate-commits] Hibernate SVN: r11560 - trunk/sandbox/maven-poc/Hibernate3/core.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu May 24 15:03:26 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-05-24 15:03:26 -0400 (Thu, 24 May 2007)
New Revision: 11560

Modified:
   trunk/sandbox/maven-poc/Hibernate3/core/pom.xml
Log:
fixed dependency definitions

Modified: trunk/sandbox/maven-poc/Hibernate3/core/pom.xml
===================================================================
--- trunk/sandbox/maven-poc/Hibernate3/core/pom.xml	2007-05-24 19:02:53 UTC (rev 11559)
+++ trunk/sandbox/maven-poc/Hibernate3/core/pom.xml	2007-05-24 19:03:26 UTC (rev 11560)
@@ -44,15 +44,9 @@
         <dependency>
             <groupId>javax.transaction</groupId>
             <artifactId>jta</artifactId>
-            <version>1.0.1B</version>
+            <version>1.1</version>
         </dependency>
         <dependency>
-            <groupId>ant</groupId>
-            <artifactId>ant</artifactId>
-            <version>1.6.5</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
             <groupId>javax.security</groupId>
             <artifactId>jaas</artifactId>
             <version>1.0.01</version>
@@ -64,22 +58,31 @@
             <version>1.0</version>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>ant</groupId>
+            <artifactId>ant</artifactId>
+            <version>1.6.5</version>
+            <scope>provided</scope>
+        </dependency>
 
         <!-- optional deps for bytecode providers until those are finally properly scoped -->
         <dependency>
             <groupId>javassist</groupId>
             <artifactId>javassist</artifactId>
-            <version>3.4.GA</version>
+            <version>3.4.GA</version>
+            <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>cglib</groupId>
             <artifactId>cglib</artifactId>
-            <version>2.1_3</version>
+            <version>2.1_3</version>
+            <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>asm</groupId>
             <artifactId>asm-attrs</artifactId>
-            <version>1.5.3</version>
+            <version>1.5.3</version>
+            <optional>true</optional>
         </dependency>
     </dependencies>
 
@@ -115,4 +118,4 @@
         </plugins>
     </reporting>
 
-</project>
\ No newline at end of file
+</project>




More information about the hibernate-commits mailing list