[jboss-cvs] JBossAS SVN: r103383 - in projects/snowdrop/examples/trunk/sportsclub: docs/guide/en-US and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 1 01:50:27 EDT 2010


Author: marius.bogoevici
Date: 2010-04-01 01:50:27 -0400 (Thu, 01 Apr 2010)
New Revision: 103383

Modified:
   projects/snowdrop/examples/trunk/sportsclub/docs/guide/en-US/Introduction.xml
   projects/snowdrop/examples/trunk/sportsclub/pom.xml
   projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml
   projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml
Log:
dependencies and documentation

Modified: projects/snowdrop/examples/trunk/sportsclub/docs/guide/en-US/Introduction.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/docs/guide/en-US/Introduction.xml	2010-04-01 05:48:14 UTC (rev 103382)
+++ projects/snowdrop/examples/trunk/sportsclub/docs/guide/en-US/Introduction.xml	2010-04-01 05:50:27 UTC (rev 103383)
@@ -37,7 +37,7 @@
   </section>
 
   <section>
-    <title>How to run the examples </title>
+    <title>How to run the examples</title>
 
     <para>Running the application consists of the following
     steps:<itemizedlist>
@@ -105,7 +105,7 @@
 
       <para>Once this step has been completed, it does not need to be repeated
       again before running the application, but it can be repeated if the
-      database needs to be reset. </para>
+      database needs to be reset.</para>
     </simplesect>
 
     <simplesect>
@@ -142,13 +142,14 @@
 mvn -Pinstall</programlisting>
         </informalexample>This will copy the datasource and JMS destination
       definitions into the JBoss server. Like the previous one, this step
-      needs to be executed only once. </para>
+      needs to be executed only once.</para>
     </simplesect>
 
     <simplesect>
       <title>Deploying</title>
 
-      <para></para>
+      <para>Deploying the application is as easy as copying one of the jars
+      produced by the application</para>
     </simplesect>
   </section>
 </chapter>

Modified: projects/snowdrop/examples/trunk/sportsclub/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/pom.xml	2010-04-01 05:48:14 UTC (rev 103382)
+++ projects/snowdrop/examples/trunk/sportsclub/pom.xml	2010-04-01 05:50:27 UTC (rev 103383)
@@ -99,6 +99,12 @@
                 <scope>provided</scope>
             </dependency>
 
+             <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-aop</artifactId>
+                <version>${spring.version}</version>
+            </dependency>
+
             <dependency>
                 <groupId>org.springframework</groupId>
                 <artifactId>spring-context</artifactId>

Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml	2010-04-01 05:48:14 UTC (rev 103382)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-ear/pom.xml	2010-04-01 05:50:27 UTC (rev 103383)
@@ -64,6 +64,14 @@
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>
+            <artifactId>spring-aop</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-jdbc</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
             <artifactId>spring-context</artifactId>
         </dependency>
         <dependency>

Modified: projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml
===================================================================
--- projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml	2010-04-01 05:48:14 UTC (rev 103382)
+++ projects/snowdrop/examples/trunk/sportsclub/sportsclub-jpa-ear/pom.xml	2010-04-01 05:50:27 UTC (rev 103383)
@@ -62,8 +62,16 @@
             <type>war</type>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-aop</artifactId>
+        </dependency>
          <dependency>
             <groupId>org.springframework</groupId>
+            <artifactId>spring-jdbc</artifactId>
+        </dependency>
+         <dependency>
+            <groupId>org.springframework</groupId>
             <artifactId>spring-context</artifactId>
         </dependency>
         <dependency>




More information about the jboss-cvs-commits mailing list