summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-12-10 09:44:30 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-12-10 09:44:30 +0000
commitbbc9015e8fd499cbb022f232e94c132bb3b295ab (patch)
treec0c72b461cb50f0fd7940bfc39c58c12f477874f /sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml
parent31524306788227052639c12d68780db54cb84a27 (diff)
Add a Java SE client that uses the SCAClient API to talk to the Helloworld service thats running on a Node somewhere else, connecting with tribes. (does work but not yet terribly well)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@889162 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml23
1 files changed, 22 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml b/sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml
index 2221622a97..68bb686ae3 100644
--- a/sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml
+++ b/sca-java-2.x/trunk/distribution/tomcat/testing/download-tomcat/pom.xml
@@ -27,7 +27,7 @@
</parent>
<artifactId>download-tomcat</artifactId>
- <packaging>pom</packaging>
+ <packaging>war</packaging>
<name>Apache Tuscany SCA Tomcat Integration Testing Download Tomcat</name>
<properties>
@@ -35,7 +35,16 @@
</properties>
<build>
+
+
<plugins>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>tomcat-maven-plugin</artifactId>
+ <version>1.0-beta-1</version>
+ </plugin>
+
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
@@ -58,4 +67,16 @@
</plugins>
</build>
+
+<profiles>
+ <profile>
+ <activation>
+ <file>
+ <exists>download/apache-tomcat-6.0.18.zip</exists>
+ </file>
+ </activation>
+ </profile>
+</profiles>
+
+
</project>