[jboss-cvs] JBossAS SVN: r104655 - in projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1: sportsclub-ear and 4 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon May 10 23:03:59 EDT 2010


Author: marius.bogoevici
Date: 2010-05-10 23:03:58 -0400 (Mon, 10 May 2010)
New Revision: 104655

Modified:
   projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/pom.xml
   projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-ear/pom.xml
   projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/pom.xml
   projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml
   projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-jpa-ear/pom.xml
   projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-subscriptions-ejb/pom.xml
Log:
build fixes

Modified: projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/pom.xml
===================================================================
--- projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/pom.xml	2010-05-11 03:02:45 UTC (rev 104654)
+++ projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/pom.xml	2010-05-11 03:03:58 UTC (rev 104655)
@@ -100,12 +100,23 @@
 
             <dependency>
                 <groupId>org.springframework</groupId>
+                <artifactId>spring-core</artifactId>
+                <version>${spring.version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.springframework</groupId>
                 <artifactId>spring-context</artifactId>
                 <version>${spring.version}</version>
             </dependency>
 
             <dependency>
                 <groupId>org.springframework</groupId>
+                <artifactId>spring-context-support</artifactId>
+                <version>${spring.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.springframework</groupId>
                 <artifactId>spring-tx</artifactId>
                 <version>${spring.version}</version>
             </dependency>

Modified: projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-ear/pom.xml
===================================================================
--- projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-ear/pom.xml	2010-05-11 03:02:45 UTC (rev 104654)
+++ projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-ear/pom.xml	2010-05-11 03:03:58 UTC (rev 104655)
@@ -67,6 +67,10 @@
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
             <artifactId>spring-jdbc</artifactId>
         </dependency>
         <dependency>
@@ -75,6 +79,10 @@
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>
+            <artifactId>spring-context-support</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
             <artifactId>spring-jms</artifactId>
         </dependency>
         <dependency>

Modified: projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/pom.xml
===================================================================
--- projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/pom.xml	2010-05-11 03:02:45 UTC (rev 104654)
+++ projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/pom.xml	2010-05-11 03:03:58 UTC (rev 104655)
@@ -24,7 +24,7 @@
         <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-webmvc</artifactId>
-            <version>2.5.6.SEC01</version>
+            <version>${spring.version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>org.springframework</groupId>
@@ -51,6 +51,7 @@
                     <artifactId>commons-logging</artifactId>
                 </exclusion>
             </exclusions>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>

Modified: projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml
===================================================================
--- projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml	2010-05-11 03:02:45 UTC (rev 104654)
+++ projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-invoicing-webmvc/src/main/webapp/WEB-INF/spring-business-context.xml	2010-05-11 03:03:58 UTC (rev 104655)
@@ -27,11 +27,11 @@
     <bean id="activationSpecFactory" class="org.springframework.jms.listener.endpoint.DefaultJmsActivationSpecFactory">
         <property name="activationSpecClass" value="org.jboss.resource.adapter.jms.inflow.JmsActivationSpec"/>
         <property name="defaultProperties">
-            <value>
-                clientId=remote
-                subscriptionName=jca-paymentProcessor
-                useDLQ=false
-            </value>
+            <props>
+              <prop key="clientId">remote</prop>
+              <prop key="subscriptionName">jca-paymentProcessor</prop>
+              <prop key="useDLQ">false</prop>
+            </props>
         </property>
     </bean>
 

Modified: projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-jpa-ear/pom.xml
===================================================================
--- projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-jpa-ear/pom.xml	2010-05-11 03:02:45 UTC (rev 104654)
+++ projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-jpa-ear/pom.xml	2010-05-11 03:03:58 UTC (rev 104655)
@@ -65,16 +65,24 @@
             <groupId>org.springframework</groupId>
             <artifactId>spring-aop</artifactId>
         </dependency>
-         <dependency>
+        <dependency>
             <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
             <artifactId>spring-jdbc</artifactId>
         </dependency>
-         <dependency>
+        <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-context</artifactId>
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>
+            <artifactId>spring-context-support</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
             <artifactId>spring-jms</artifactId>
         </dependency>
         <dependency>

Modified: projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-subscriptions-ejb/pom.xml
===================================================================
--- projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-subscriptions-ejb/pom.xml	2010-05-11 03:02:45 UTC (rev 104654)
+++ projects/snowdrop/examples/tags/sportsclub-1.0.0-WFK-1.1-CR1/sportsclub-subscriptions-ejb/pom.xml	2010-05-11 03:03:58 UTC (rev 104655)
@@ -47,7 +47,7 @@
         <dependency>
             <groupId>org.jboss.snowdrop</groupId>
             <artifactId>snowdrop-deployers</artifactId>
-            <version>1.0.0.GA</version>
+            <version>${snowdrop.version}</version>
         </dependency>
 
     </dependencies>




More information about the jboss-cvs-commits mailing list