summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml')
-rw-r--r--branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml39
1 files changed, 35 insertions, 4 deletions
diff --git a/branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml b/branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml
index ed6da9f3b9..912ff4f719 100644
--- a/branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml
+++ b/branches/sca-java-1.x/samples/calculator-ws-webapp/pom.xml
@@ -29,21 +29,51 @@
<packaging>war</packaging>
<name>Apache Tuscany SCA Sample Calculator Web Service in a WebApp</name>
+ <repositories>
+ <repository>
+ <id>apache.incubator</id>
+ <url>http://people.apache.org/repo/m2-incubating-repository</url>
+ </repository>
+ </repositories>
+
<dependencies>
- <!-- dependency>
+ <dependency>
<groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-base</artifactId>
+ <artifactId>tuscany-host-webapp</artifactId>
<version>1.5-SNAPSHOT</version>
- </dependency -->
+ </dependency>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-webservices</artifactId>
+ <artifactId>tuscany-binding-ws-axis2</artifactId>
<version>1.5-SNAPSHOT</version>
</dependency>
<dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>1.5-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <!-- exclude stax 1.0.1 as we're also pulling in javax\xml\stream\stax-api\1.0-2 -->
+ <dependency>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ <version>1.0.1</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- marking dependency as provided to exclude from war file -->
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.3</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
@@ -70,3 +100,4 @@
</plugins>
</build>
</project>
+