summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>