diff options
Diffstat (limited to 'sca-java-2.x/trunk/samples/webapps/helloworld-wicket')
-rw-r--r-- | sca-java-2.x/trunk/samples/webapps/helloworld-wicket/pom.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/webapps/helloworld-wicket/pom.xml b/sca-java-2.x/trunk/samples/webapps/helloworld-wicket/pom.xml index 25e30c136c..f6bbb4cc82 100644 --- a/sca-java-2.x/trunk/samples/webapps/helloworld-wicket/pom.xml +++ b/sca-java-2.x/trunk/samples/webapps/helloworld-wicket/pom.xml @@ -76,6 +76,36 @@ <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.18</version> + <configuration> + <contextPath>helloworld-wicket</contextPath> + <stopKey>foo</stopKey> + <stopPort>9999</stopPort> + </configuration> + <executions> + <execution> + <id>start-jetty</id> + <phase>process-test-classes</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <scanIntervalSeconds>0</scanIntervalSeconds> + <daemon>true</daemon> + <connectors> + <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> + <port>8085</port> + </connector> + </connectors> + </configuration> + </execution> + <execution> + <id>stop-jetty</id> + <phase>prepare-package</phase> + <goals> + <goal>stop</goal> + </goals> + </execution> + </executions> </plugin> </plugins> </build> |