summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/calculator-ws-webapp
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-01-05 13:32:25 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-01-05 13:32:25 +0000
commit7c71018e8bb412d5c0b7f57f9ba54a68375f1068 (patch)
treed35f88961943886df11b9f4d388d728a51f758e1 /branches/sca-java-1.x/samples/calculator-ws-webapp
parentcf8c21c65a12789a8f3bf2e72eb76c2dd8acd6ea (diff)
Revert pom.xml change inadvertently included in r731561
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@731563 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/calculator-ws-webapp')
-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>
+