[jboss-cvs] JBossAS SVN: r96856 - projects/snowdrop/trunk/documentation/samples/sportsclub/sportsclub-reservations-spring.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 24 09:23:52 EST 2009


Author: lvlcek at redhat.com
Date: 2009-11-24 09:23:52 -0500 (Tue, 24 Nov 2009)
New Revision: 96856

Modified:
   projects/snowdrop/trunk/documentation/samples/sportsclub/sportsclub-reservations-spring/pom.xml
Log:
fixing domain and hibernate-dao dependencies (provided)

Modified: projects/snowdrop/trunk/documentation/samples/sportsclub/sportsclub-reservations-spring/pom.xml
===================================================================
--- projects/snowdrop/trunk/documentation/samples/sportsclub/sportsclub-reservations-spring/pom.xml	2009-11-24 14:22:41 UTC (rev 96855)
+++ projects/snowdrop/trunk/documentation/samples/sportsclub/sportsclub-reservations-spring/pom.xml	2009-11-24 14:23:52 UTC (rev 96856)
@@ -11,21 +11,32 @@
     <artifactId>sportsclub-reservations-spring</artifactId>
     <name>Sports Club Reservations Spring Business Layer</name>
 
-  <dependencies>
-    <dependency>
-      <groupId>org.hibernate</groupId>
-      <artifactId>hibernate-core</artifactId>
-    </dependency>
+    <dependencies>
 
-    <dependency>
-      <groupId>org.springframework</groupId>
-      <artifactId>spring</artifactId>
-    </dependency>
+        <dependency>
+            <groupId>org.jboss.snowdrop.samples.sportsclub</groupId>
+            <artifactId>sportsclub-domain</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
 
-    <dependency>
-      <groupId>org.jboss.snowdrop.samples.sportsclub</groupId>
-      <artifactId>sportsclub-domain</artifactId>
-    </dependency>
-  </dependencies>
-    
+        <dependency>
+            <groupId>org.jboss.snowdrop.samples.sportsclub</groupId>
+            <artifactId>sportsclub-hibernate-dao</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-core</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+        </dependency>
+
+    </dependencies>
+
 </project>




More information about the jboss-cvs-commits mailing list