You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2008/12/11 01:08:52 UTC

svn commit: r725497 - in /tuscany/branches/sca-java-1.4: distribution/ distribution/manifest/ distribution/src/main/release/bin/ itest/jms-format/ itest/jms/ itest/policy-security-basicauth/ itest/policy-security-token/ itest/transaction/ modules/runti...

Author: lresende
Date: Wed Dec 10 16:08:50 2008
New Revision: 725497

URL: http://svn.apache.org/viewvc?rev=725497&view=rev
Log:
TUSCANY-2707 - Updating ActiveMQ dependency to 5.2.0 version where derby files are not embedded on the activeMQ jar. This solves the issues we were seeing with helloworld-bpel sample

Modified:
    tuscany/branches/sca-java-1.4/distribution/manifest/pom.xml
    tuscany/branches/sca-java-1.4/distribution/pom.xml
    tuscany/branches/sca-java-1.4/distribution/src/main/release/bin/LICENSE
    tuscany/branches/sca-java-1.4/itest/jms-format/pom.xml
    tuscany/branches/sca-java-1.4/itest/jms/pom.xml
    tuscany/branches/sca-java-1.4/itest/policy-security-basicauth/pom.xml
    tuscany/branches/sca-java-1.4/itest/policy-security-token/pom.xml
    tuscany/branches/sca-java-1.4/itest/transaction/pom.xml
    tuscany/branches/sca-java-1.4/modules/runtime/pom.xml
    tuscany/branches/sca-java-1.4/samples/helloworld-reference-jms/pom.xml
    tuscany/branches/sca-java-1.4/samples/helloworld-service-jms/pom.xml
    tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml
    tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml

Modified: tuscany/branches/sca-java-1.4/distribution/manifest/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/distribution/manifest/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/distribution/manifest/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/distribution/manifest/pom.xml Wed Dec 10 16:08:50 2008
@@ -87,8 +87,8 @@
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>apache-activemq</artifactId>
-            <version>4.1.1</version>
+            <artifactId>activemq-all</artifactId>
+            <version>5.2.0</version>
             <exclusions>
                 <exclusion>
                     <groupId>commons-httpclient</groupId>

Modified: tuscany/branches/sca-java-1.4/distribution/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/distribution/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/distribution/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/distribution/pom.xml Wed Dec 10 16:08:50 2008
@@ -140,8 +140,8 @@
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>apache-activemq</artifactId>
-            <version>4.1.1</version>
+            <artifactId>activemq-all</artifactId>
+            <version>5.2.0</version>
             <exclusions>
                 <!-- TUSCANY-2168 -->
                 <exclusion>

Modified: tuscany/branches/sca-java-1.4/distribution/src/main/release/bin/LICENSE
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/distribution/src/main/release/bin/LICENSE?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/distribution/src/main/release/bin/LICENSE (original)
+++ tuscany/branches/sca-java-1.4/distribution/src/main/release/bin/LICENSE Wed Dec 10 16:08:50 2008
@@ -231,8 +231,8 @@
  activeio-2.0-r118.jar
  activeio-core-3.0.0-incubator.jar
  activeio-core-3.1.0-tests.jar
- activemq-core-5.1.0.jar
- apache-activemq-4.1.1.jar
+ activemq-all-5.2.0.jar
+ activemq-core-5.2.0.jar
  addressing-1.3.mar
  annogen-0.1.0.jar
  aopalliance-1.0.jar

Modified: tuscany/branches/sca-java-1.4/itest/jms-format/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/jms-format/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/jms-format/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/jms-format/pom.xml Wed Dec 10 16:08:50 2008
@@ -73,7 +73,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>

Modified: tuscany/branches/sca-java-1.4/itest/jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/jms/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/jms/pom.xml Wed Dec 10 16:08:50 2008
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>

Modified: tuscany/branches/sca-java-1.4/itest/policy-security-basicauth/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/policy-security-basicauth/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/policy-security-basicauth/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/policy-security-basicauth/pom.xml Wed Dec 10 16:08:50 2008
@@ -79,7 +79,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
             <scope>runtime</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/itest/policy-security-token/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/policy-security-token/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/policy-security-token/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/policy-security-token/pom.xml Wed Dec 10 16:08:50 2008
@@ -72,7 +72,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
             <scope>runtime</scope>
         </dependency>
         

Modified: tuscany/branches/sca-java-1.4/itest/transaction/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/itest/transaction/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/itest/transaction/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/itest/transaction/pom.xml Wed Dec 10 16:08:50 2008
@@ -52,12 +52,12 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-ra</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>

Modified: tuscany/branches/sca-java-1.4/modules/runtime/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/modules/runtime/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/modules/runtime/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/modules/runtime/pom.xml Wed Dec 10 16:08:50 2008
@@ -349,7 +349,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
         </dependency>
     </dependencies>
 

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-reference-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-reference-jms/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-reference-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-reference-jms/pom.xml Wed Dec 10 16:08:50 2008
@@ -72,8 +72,8 @@
         
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>apache-activemq</artifactId>
-            <version>4.1.1</version>
+            <artifactId>activemq-all</artifactId>
+            <version>5.2.0</version>
             <scope>test</scope>
             <exclusions>
                 <exclusion>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-service-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-service-jms/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-service-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-service-jms/pom.xml Wed Dec 10 16:08:50 2008
@@ -66,8 +66,8 @@
         
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>apache-activemq</artifactId>
-            <version>4.1.1</version>
+            <artifactId>activemq-all</artifactId>
+            <version>5.2.0</version>
             <exclusions>
                 <exclusion>
                     <groupId>org.apache.activemq</groupId>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-reference-jms/pom.xml Wed Dec 10 16:08:50 2008
@@ -72,8 +72,8 @@
         
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>apache-activemq</artifactId>
-            <version>4.1.1</version>
+            <artifactId>activemq-all</artifactId>
+            <version>5.2.0</version>
             <scope>test</scope>
             <exclusions>
                 <exclusion>

Modified: tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml?rev=725497&r1=725496&r2=725497&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml (original)
+++ tuscany/branches/sca-java-1.4/samples/helloworld-ws-service-jms/pom.xml Wed Dec 10 16:08:50 2008
@@ -53,7 +53,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>4.1.1</version>
+            <version>5.2.0</version>
             <scope>compile</scope>            
         </dependency>
         <dependency>