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/08 16:02:09 UTC

svn commit: r1005835 - /tuscany/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml

Author: slaws
Date: Fri Oct  8 14:02:09 2010
New Revision: 1005835

URL: http://svn.apache.org/viewvc?rev=1005835&view=rev
Log:
Update as an example of using base + extensions in compliance tests

Modified:
    tuscany/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml

Modified: tuscany/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml?rev=1005835&r1=1005834&r2=1005835&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml Fri Oct  8 14:02:09 2010
@@ -30,9 +30,9 @@
 
     <dependencies>
 
+        <!-- This is only needed to get the module working in Eclipse which doesn't pick it up from the dependency plugin unpack -->
+        <!-- The dependency plugin unpack is needed as presently the surefire plugin wont run tests in a dependency jar -->
         <dependency>
-            <!-- This is only needed to get the module working in Eclipse which doesn't pick it up from the dependency plugin unpack -->
-            <!-- The dependency plugin unpack is needed as presently the surefire plugin wont run tests in a dependency jar -->
             <groupId>org.apache.tuscany.sca</groupId>
             <artifactId>tuscany-otests-asm-tests</artifactId>
             <version>2.0-SNAPSHOT</version>
@@ -40,14 +40,40 @@
 
         <dependency>
             <groupId>org.apache.tuscany.sca</groupId>
-            <artifactId>tuscany-feature-base</artifactId>
+            <artifactId>tuscany-base-runtime</artifactId>
+            <version>2.0-SNAPSHOT</version>
             <type>pom</type>
+        </dependency> 
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-osgi-runtime</artifactId>
+            <version>2.0-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency> 
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
             <version>2.0-SNAPSHOT</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-jetty</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency> 
+
+        <!-- Not sure why this is required for ASM. But ASM_6039 & ASM_6036 fail without it --> 
+        <dependency>
+            <groupId>com.sun.xml.ws</groupId>
+            <artifactId>jaxws-rt</artifactId>
+            <version>2.1.7</version>
+        </dependency> 
+
         <!-- This is need when running with Sun JDK which gets an unsupported operation exception creating an XMLStreamReader from a DOMSource
              when Tuscany is writing a property value  -->
-
+<!--
         <dependency>
             <groupId>org.codehaus.woodstox</groupId>
             <artifactId>wstx-asl</artifactId>
@@ -60,6 +86,7 @@
                 </exclusion>
             </exclusions>
         </dependency>
+-->
 
         <dependency>
             <groupId>junit</groupId>
@@ -83,7 +110,6 @@
            </excludes>
          </configuration>
       </plugin>
-
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
@@ -116,7 +142,6 @@
           </execution>
         </executions>
       </plugin>
-
     </plugins>
   </build>
 </project>