Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Becker2012-11-23 10:01:34 +0000
committerThomas Becker2012-11-23 10:01:58 +0000
commitab642141d1b512ffce993920e0e789aa7f89d2d5 (patch)
tree0afe35c895d5cd7444955af57ddfa0a5a1c486a7
parentf89909e3018fc1a13e19380ce6bf9eb466558a74 (diff)
downloadorg.eclipse.jetty.project-ab642141d1b512ffce993920e0e789aa7f89d2d5.tar.gz
org.eclipse.jetty.project-ab642141d1b512ffce993920e0e789aa7f89d2d5.tar.xz
org.eclipse.jetty.project-ab642141d1b512ffce993920e0e789aa7f89d2d5.zip
Add jetty-maven-plugin to test-webapp-rfc2616
-rw-r--r--tests/test-webapps/test-webapp-rfc2616/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test-webapps/test-webapp-rfc2616/pom.xml b/tests/test-webapps/test-webapp-rfc2616/pom.xml
index e1aa6438ce..e9d78ecb24 100644
--- a/tests/test-webapps/test-webapp-rfc2616/pom.xml
+++ b/tests/test-webapps/test-webapp-rfc2616/pom.xml
@@ -36,6 +36,22 @@
<skip>true</skip>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-maven-plugin</artifactId>
+ <version>${project.version}</version>
+ <configuration>
+ <stopPort>8087</stopPort>
+ <stopKey>foo</stopKey>
+ <scanIntervalSeconds>1</scanIntervalSeconds>
+ <systemProperties>
+ <systemProperty>
+ <name>fooprop</name>
+ <value>222</value>
+ </systemProperty>
+ </systemProperties>
+ </configuration>
+ </plugin>
</plugins>
</build>
<dependencies>

Back to the top