summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-09-21 06:37:02 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-09-21 06:37:02 +0000
commitff30955a73aae96fdcebcd4eb12e4ccd8a16cee3 (patch)
tree3db9b1ff9f3a4b8d319808908061999ca226d839
parente787e01ebb39572ee5ba18b5136e5f64d1998b9f (diff)
Adding plugin to allow mvn:deploy
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@999238 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/samples/running-tuscany/launcher-shell/pom.xml19
1 files changed, 11 insertions, 8 deletions
diff --git a/sca-java-2.x/trunk/samples/running-tuscany/launcher-shell/pom.xml b/sca-java-2.x/trunk/samples/running-tuscany/launcher-shell/pom.xml
index f3db1d7aec..5fea678288 100644
--- a/sca-java-2.x/trunk/samples/running-tuscany/launcher-shell/pom.xml
+++ b/sca-java-2.x/trunk/samples/running-tuscany/launcher-shell/pom.xml
@@ -76,14 +76,17 @@
<build>
<finalName>scashell</finalName>
<plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <dependentWarExcludes>WEB-INF/web.xml</dependentWarExcludes>
- </configuration>
- </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>tomcat-maven-plugin</artifactId>
+ <version>1.0</version>
+ <configuration>
+ <!-- Key used for configuring access to server in settings.xml-->
+ <server>tomcat</server>
+ <!-- context for the webapp, as finalName is not being honored -->
+ <path>/scashell</path>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>