diff options
Diffstat (limited to '')
-rw-r--r-- | sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml | 4 | ||||
-rw-r--r-- | sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml b/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml index d43e0a949a..4783db3958 100644 --- a/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml +++ b/sca-java-2.x/trunk/samples/webapps/helloworld/pom.xml @@ -34,7 +34,7 @@ <dependency> <groupId>org.apache.tuscany.sca.shades</groupId> - <artifactId>tuscany-base</artifactId> + <artifactId>tuscany-base-nodep</artifactId> <version>2.0-SNAPSHOT</version> </dependency> @@ -61,7 +61,7 @@ <artifactId>sample-helloworld</artifactId> <version>${pom.version}</version> <!-- should really go in the target folder but i can't get jetty:run to work using that --> - <outputDirectory>src/main/webapp/embeddedContributions</outputDirectory> + <outputDirectory>src/main/webapp/WEB-INF/sca-contributions</outputDirectory> </artifactItem> </artifactItems> </configuration> diff --git a/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml b/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml index ee2bd05604..85aed34b26 100644 --- a/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml +++ b/sca-java-2.x/trunk/samples/webapps/helloworld/src/main/webapp/WEB-INF/web.xml @@ -26,7 +26,7 @@ <context-param> <param-name>contributions</param-name> - <param-value>/embeddedContributions</param-value> + <param-value>/WEB-INF/sca-contributions</param-value> </context-param> <context-param> |