diff options
Diffstat (limited to '')
-rw-r--r-- | java/sca/otest/current/tests/pom.xml | 76 |
1 files changed, 45 insertions, 31 deletions
diff --git a/java/sca/otest/current/tests/pom.xml b/java/sca/otest/current/tests/pom.xml index 892c40360f..127698eb72 100644 --- a/java/sca/otest/current/tests/pom.xml +++ b/java/sca/otest/current/tests/pom.xml @@ -26,8 +26,8 @@ <relativePath>../pom.xml</relativePath> </parent> <artifactId>tuscany-otests-asm-tests</artifactId> - <name>Apache Tuscany SCA Specification Tests</name> - + <name>Apache Tuscany SCA Specification Tests</name> + <dependencies> <dependency> <groupId>org.apache.tuscany.sca</groupId> @@ -45,20 +45,20 @@ <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-implementation-java-runtime</artifactId> <version>2.0-SNAPSHOT</version> - </dependency> - + </dependency> + <dependency> <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-binding-ws-axis2</artifactId> <version>2.0-SNAPSHOT</version> - </dependency> - + </dependency> + <dependency> <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-otests-asm-General</artifactId> <version>2.0-SNAPSHOT</version> - </dependency> - + </dependency> + <dependency> <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-otests-asm-General_Java</artifactId> @@ -66,37 +66,51 @@ </dependency> <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.5</version> + </dependency> + + <dependency> + <groupId>com.sun.xml.ws</groupId> + <artifactId>jaxws-rt</artifactId> + <version>2.1.7</version> + </dependency> + + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> - </dependencies> + </dependencies> + + <build> <finalName>${artifactId}</finalName> - <plugins> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>build-helper-maven-plugin</artifactId> - <version>1.3</version> - <executions> - <execution> - <id>add-test-source</id> - <phase>generate-sources</phase> - <goals> - <goal>add-test-source</goal> - </goals> - <configuration> - <sources> - <source>src/main/ttest</source> - <source>src/main/tests</source> - </sources> - </configuration> - </execution> - </executions> - </plugin> - </plugins> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.3</version> + <executions> + <execution> + <id>add-test-source</id> + <phase>generate-sources</phase> + <goals> + <goal>add-test-source</goal> + </goals> + <configuration> + <sources> + <source>src/main/ttest</source> + <source>src/main/tests</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> </project> |