diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-01 10:38:39 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-01 10:38:39 +0000 |
commit | 7c3efcb13d804f6c1dd815fffb2616a3d3007781 (patch) | |
tree | e2f6889f946c38a842502f10635d14e0e6da8672 /java | |
parent | 8c50011b79bd1a9676ae8418413b5d7f654a69ff (diff) |
Add the Jetty plugin to the webapp pom.xml's so that the samples can be run with mvn jetty:run
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@831664 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
5 files changed, 35 insertions, 0 deletions
diff --git a/java/sca/samples/webapps/helloworld-jsf/pom.xml b/java/sca/samples/webapps/helloworld-jsf/pom.xml index 236501838e..e9093cc098 100644 --- a/java/sca/samples/webapps/helloworld-jsf/pom.xml +++ b/java/sca/samples/webapps/helloworld-jsf/pom.xml @@ -57,6 +57,13 @@ <build> <finalName>${artifactId}</finalName> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty-plugin</artifactId> + <version>6.1.18</version> + </plugin> + </plugins> </build> </project> diff --git a/java/sca/samples/webapps/helloworld-jsp/pom.xml b/java/sca/samples/webapps/helloworld-jsp/pom.xml index 5c1786e651..88773913a5 100644 --- a/java/sca/samples/webapps/helloworld-jsp/pom.xml +++ b/java/sca/samples/webapps/helloworld-jsp/pom.xml @@ -50,6 +50,13 @@ <build> <finalName>${artifactId}</finalName> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty-plugin</artifactId> + <version>6.1.18</version> + </plugin> + </plugins> </build> </project> diff --git a/java/sca/samples/webapps/helloworld-stripes/pom.xml b/java/sca/samples/webapps/helloworld-stripes/pom.xml index 2d6e8a0507..ec5cb600ea 100644 --- a/java/sca/samples/webapps/helloworld-stripes/pom.xml +++ b/java/sca/samples/webapps/helloworld-stripes/pom.xml @@ -60,6 +60,13 @@ <build> <finalName>${artifactId}</finalName> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty-plugin</artifactId> + <version>6.1.18</version> + </plugin> + </plugins> </build> </project> diff --git a/java/sca/samples/webapps/helloworld-wicket/pom.xml b/java/sca/samples/webapps/helloworld-wicket/pom.xml index db5a8e7f6b..82f08f1e41 100644 --- a/java/sca/samples/webapps/helloworld-wicket/pom.xml +++ b/java/sca/samples/webapps/helloworld-wicket/pom.xml @@ -71,6 +71,13 @@ <build> <finalName>${artifactId}</finalName> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty-plugin</artifactId> + <version>6.1.18</version> + </plugin> + </plugins> </build> </project> diff --git a/java/sca/samples/webapps/helloworld/pom.xml b/java/sca/samples/webapps/helloworld/pom.xml index b553afb6f6..1d8a7d3a72 100644 --- a/java/sca/samples/webapps/helloworld/pom.xml +++ b/java/sca/samples/webapps/helloworld/pom.xml @@ -50,6 +50,13 @@ <build> <finalName>${artifactId}</finalName> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>maven-jetty-plugin</artifactId> + <version>6.1.18</version> + </plugin> + </plugins> </build> </project> |