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

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue May 1 11:24:45 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-05-01 11:24:44 -0400 (Tue, 01 May 2007)
New Revision: 11437

Modified:
   trunk/sandbox/maven-poc/Hibernate3/pom.xml
Log:
control module versions (for interdependencies) from parent

Modified: trunk/sandbox/maven-poc/Hibernate3/pom.xml
===================================================================
--- trunk/sandbox/maven-poc/Hibernate3/pom.xml	2007-05-01 13:20:55 UTC (rev 11436)
+++ trunk/sandbox/maven-poc/Hibernate3/pom.xml	2007-05-01 15:24:44 UTC (rev 11437)
@@ -99,13 +99,55 @@
 -->
     </modules>
 
-    <repositories>
-        <repository>
-            <id>jboss-maven-repo</id>
-            <name>JBoss maintained repo</name>
-            <url>http://repository.jboss.com/maven2</url>
-        </repository>
-    </repositories>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-core</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-ehcache</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-jbosscache</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-oscache</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-swarmcache</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-c3p0</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-proxool</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-jmx</artifactId>
+                <version>${version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${groupId}</groupId>
+                <artifactId>hibernate-testing</artifactId>
+                <version>${version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
 
     <dependencies>
         <dependency>
@@ -116,6 +158,14 @@
         </dependency>
     </dependencies>
 
+    <repositories>
+        <repository>
+            <id>jboss-maven-repo</id>
+            <name>JBoss maintained repo</name>
+            <url>http://repository.jboss.com/maven2</url>
+        </repository>
+    </repositories>
+
 <!--
     The jbc2.0-based module is not written yet, but it will require jdk5
     <profiles>




More information about the hibernate-commits mailing list