Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2012-11-02 04:41:58 +0000
committerJan Bartel2012-11-02 04:43:05 +0000
commit94c05e6c2ecf840887defb54461102dfab561d56 (patch)
treedbc05313e4662a08de968214855fa4273a710b5b /tests/test-webapps/test-servlet-spec/pom.xml
parent949996931a089589de6005b2e0bc2f4c44aa1820 (diff)
downloadorg.eclipse.jetty.project-94c05e6c2ecf840887defb54461102dfab561d56.tar.gz
org.eclipse.jetty.project-94c05e6c2ecf840887defb54461102dfab561d56.tar.xz
org.eclipse.jetty.project-94c05e6c2ecf840887defb54461102dfab561d56.zip
Porting test webapps from codehaus to jetty-9
Diffstat (limited to 'tests/test-webapps/test-servlet-spec/pom.xml')
-rw-r--r--tests/test-webapps/test-servlet-spec/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/test-webapps/test-servlet-spec/pom.xml b/tests/test-webapps/test-servlet-spec/pom.xml
new file mode 100644
index 0000000000..9e83533468
--- /dev/null
+++ b/tests/test-webapps/test-servlet-spec/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.eclipse.jetty.tests</groupId>
+ <artifactId>test-webapps-parent</artifactId>
+ <version>9.0.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>test-servlet-spec-parent</artifactId>
+ <name>Jetty Tests :: Spec Test WebApp :: Parent</name>
+ <packaging>pom</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <!-- DO NOT DEPLOY (or Release) -->
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <modules>
+ <module>test-web-fragment</module>
+ <module>test-container-initializer</module>
+ <module>test-spec-webapp</module>
+ </modules>
+
+</project>

Back to the top