You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2010/10/29 16:36:54 UTC

svn commit: r1028772 - in /tuscany/sca-java-2.x/branches/2.0-Beta1: modules/base-runtime-pom/ modules/binding-ws-runtime-axis2/ testing/compliance-tests/assembly/ testing/compliance-tests/binding-jms/ testing/compliance-tests/binding-ws/ testing/compli...

Author: slaws
Date: Fri Oct 29 14:36:53 2010
New Revision: 1028772

URL: http://svn.apache.org/viewvc?rev=1028772&view=rev
Log:
TUSCANY-3727 - fix binding-ws which jars so that it doesn't have base Tuscany jars. So we have binding-rmi and binding-ws as examples now. It this works we'll fix the rest for the next release. 

Modified:
    tuscany/sca-java-2.x/branches/2.0-Beta1/modules/base-runtime-pom/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/modules/binding-ws-runtime-axis2/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/assembly/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-jms/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-ws/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-caa/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-ci/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/policy/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-composites/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-nodes/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-bottom-up/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-top-down/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/oneway/pom.xml
    tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/service-reference/pom.xml

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/modules/base-runtime-pom/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/modules/base-runtime-pom/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/modules/base-runtime-pom/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/modules/base-runtime-pom/pom.xml Fri Oct 29 14:36:53 2010
@@ -37,6 +37,13 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>${pom.version}</version>
+            <type>pom</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-domain-node</artifactId>
             <version>${pom.version}</version>
         </dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/modules/binding-ws-runtime-axis2/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/modules/binding-ws-runtime-axis2/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/modules/binding-ws-runtime-axis2/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/modules/binding-ws-runtime-axis2/pom.xml Fri Oct 29 14:36:53 2010
@@ -39,18 +39,13 @@
             <version>2.0-Beta1-SNAPSHOT</version>
             <type>pom</type>
             <scope>provided</scope>
-        </dependency>  
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-binding-ws-wsdlgen</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
         </dependency>     
               
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-policy-security</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
+            <scope>provided</scope> <!-- it's in base -->
         </dependency>      
 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/assembly/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/assembly/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/assembly/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/assembly/pom.xml Fri Oct 29 14:36:53 2010
@@ -40,6 +40,13 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency> 
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <type>pom</type>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-jms/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-jms/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-jms/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-jms/pom.xml Fri Oct 29 14:36:53 2010
@@ -40,8 +40,16 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-base-runtime</artifactId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
         </dependency>
 
         <dependency>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-ws/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-ws/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-ws/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/binding-ws/pom.xml Fri Oct 29 14:36:53 2010
@@ -38,6 +38,13 @@
             <version>2.0-SNAPSHOT</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency>
+
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-caa/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-caa/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-caa/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-caa/pom.xml Fri Oct 29 14:36:53 2010
@@ -40,6 +40,13 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <type>pom</type>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-ci/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-ci/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-ci/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/java-ci/pom.xml Fri Oct 29 14:36:53 2010
@@ -40,6 +40,13 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <type>pom</type>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/policy/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/policy/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/policy/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/compliance-tests/policy/pom.xml Fri Oct 29 14:36:53 2010
@@ -38,6 +38,13 @@
             <version>2.0-SNAPSHOT</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency>
+
        <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-base-runtime-pom</artifactId>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-composites/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-composites/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-composites/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-composites/pom.xml Fri Oct 29 14:36:53 2010
@@ -31,21 +31,16 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-api</artifactId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>test</scope>
+            <type>pom</type>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
             <scope>test</scope>
         </dependency>
 
@@ -58,13 +53,6 @@
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <scope>test</scope>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-nodes/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-nodes/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-nodes/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/callback-two-nodes/pom.xml Fri Oct 29 14:36:53 2010
@@ -31,21 +31,16 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-api</artifactId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>test</scope>
+            <type>pom</type>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
             <scope>test</scope>
         </dependency>
 
@@ -58,13 +53,6 @@
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-http</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <scope>test</scope>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-bottom-up/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-bottom-up/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-bottom-up/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-bottom-up/pom.xml Fri Oct 29 14:36:53 2010
@@ -59,62 +59,47 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-api</artifactId>
-            <version>${pom.version}</version>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
         </dependency>
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>${pom.version}</version>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+            <scope>test</scope>
         </dependency>
+
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
-            <version>${pom.version}</version>
-            <scope>runtime</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>${pom.version}</version>
-            <scope>runtime</scope>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <scope>test</scope>
         </dependency>
-        <!--dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-sdo</artifactId>
-            <version>${pom.version}</version>
-            <scope>compile</scope>
-        </dependency-->
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-axiom</artifactId>
-            <version>${pom.version}</version>
-            <scope>compile</scope>
+            <artifactId>tuscany-host-jetty</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <scope>test</scope>
         </dependency>
-        <!--dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>itest-databindings-common</artifactId>
-            <version>${pom.version}</version>
-            <scope>compile</scope>
-        </dependency-->
+            
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <artifactId>tuscany-databinding-jaxb</artifactId>
             <version>${pom.version}</version>
-            <scope>compile</scope>
+            <scope>runtime</scope>
         </dependency>
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-interface-java</artifactId>
+            <artifactId>tuscany-databinding-axiom</artifactId>
             <version>${pom.version}</version>
             <scope>compile</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-jetty</artifactId>
-            <version>${pom.version}</version>
-            <scope>runtime</scope>
-        </dependency>
+        
         <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
@@ -127,6 +112,7 @@
             <artifactId>jaxws-rt</artifactId>
             <version>2.1.3</version>
         </dependency>
+        
         <!-- Added by Simon Nash    -->
         <dependency>
             <groupId>commons-collections</groupId>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-top-down/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-top-down/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-top-down/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/databindings/jaxb-top-down/pom.xml Fri Oct 29 14:36:53 2010
@@ -60,62 +60,51 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-api</artifactId>
-            <version>${pom.version}</version>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
         </dependency>
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>${pom.version}</version>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+            <scope>test</scope>
         </dependency>
+
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>runtime</scope>
+            <scope>test</scope>
         </dependency>
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-jaxb</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
-        <!--dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-sdo</artifactId>
+            <artifactId>tuscany-host-jetty</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>compile</scope>
-        </dependency-->
+            <scope>test</scope>
+        </dependency>    
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-databinding-axiom</artifactId>
+            <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>compile</scope>
+            <scope>runtime</scope>
         </dependency>
-        <!-- dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>itest-databindings-common</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>compile</scope>
-        </dependency -->
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <artifactId>tuscany-databinding-jaxb</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-interface-java</artifactId>
+            <artifactId>tuscany-databinding-axiom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-host-jetty</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>runtime</scope>
-        </dependency>
+
         <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/oneway/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/oneway/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/oneway/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/oneway/pom.xml Fri Oct 29 14:36:53 2010
@@ -30,35 +30,39 @@
     <version>2.0-Beta1-SNAPSHOT</version>
 
     <dependencies>
+         <dependency>
+            <groupId>backport-util-concurrent</groupId>
+            <artifactId>backport-util-concurrent</artifactId>
+            <version>3.1</version>
+        </dependency>
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-api</artifactId>
-            <version>${pom.version}</version>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
         </dependency>
-
+        
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>${pom.version}</version>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
+            <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
-            <version>${pom.version}</version>
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <scope>test</scope>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-host-jetty</artifactId>
-            <version>${pom.version}</version>
-        </dependency>
-                
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
-            <version>${pom.version}</version>
-            <scope>runtime</scope>
-        </dependency>        
+            <version>2.0-Beta1-SNAPSHOT</version>
+            <scope>test</scope>
+        </dependency>       
     </dependencies>
 </project>

Modified: tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/service-reference/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/service-reference/pom.xml?rev=1028772&r1=1028771&r2=1028772&view=diff
==============================================================================
--- tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/service-reference/pom.xml (original)
+++ tuscany/sca-java-2.x/branches/2.0-Beta1/testing/itest/service-reference/pom.xml Fri Oct 29 14:36:53 2010
@@ -31,30 +31,25 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-api</artifactId>
+            <artifactId>tuscany-core-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-node-impl</artifactId>
-            <version>2.0-Beta1-SNAPSHOT</version>
-            <scope>test</scope>
+            <type>pom</type>
         </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
+            <type>pom</type>
             <scope>test</scope>
         </dependency>
-        
+
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
             <version>2.0-Beta1-SNAPSHOT</version>
             <scope>test</scope>
-        </dependency>  
+        </dependency>
         
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>