summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-10-08 14:02:09 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-10-08 14:02:09 +0000
commitaf4be48ca1e845c0dd77bb0f7923e9c070661b6e (patch)
tree1fda522789a744672281445fdc8eac0d6bb65a58 /sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml
parentddbb4f63543d174a9cbe71ef623f95dfffdd020e (diff)
Update as an example of using base + extensions in compliance tests
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1005835 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml')
-rw-r--r--sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml37
1 files changed, 31 insertions, 6 deletions
diff --git a/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml b/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml
index fa1bc7d5d4..dd341ec44a 100644
--- a/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml
+++ b/sca-java-2.x/trunk/testing/compliance-tests/assembly/pom.xml
@@ -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>