Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2012-01-31 22:21:58 +0000
committerJoakim Erdfelt2012-01-31 22:21:58 +0000
commitfdaad62b633f9a5a534f7468715a0e26f9770c9f (patch)
tree0bccddf09c0b435dd4cb9d62b2891ab63089e2c6 /test-jetty-webapp/pom.xml
parent6e3bd75d9989716c582a428066158902f9d2acf6 (diff)
downloadorg.eclipse.jetty.project-fdaad62b633f9a5a534f7468715a0e26f9770c9f.tar.gz
org.eclipse.jetty.project-fdaad62b633f9a5a534f7468715a0e26f9770c9f.tar.xz
org.eclipse.jetty.project-fdaad62b633f9a5a534f7468715a0e26f9770c9f.zip
Migrating old javax.* deps to new org.eclipse.jetty.orbit deps
+ Removed old deps in javax.*, geronimo, and asm in favor of new org.eclipse.jetty.orbit deps + Added enforcer rule to prevent reintroducing the old deps.
Diffstat (limited to 'test-jetty-webapp/pom.xml')
-rw-r--r--test-jetty-webapp/pom.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/test-jetty-webapp/pom.xml b/test-jetty-webapp/pom.xml
index b9806477a5..185dc8d0f8 100644
--- a/test-jetty-webapp/pom.xml
+++ b/test-jetty-webapp/pom.xml
@@ -63,10 +63,10 @@
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
- <supportedProjectTypes>
- <supportedProjectType>war</supportedProjectType>
- </supportedProjectTypes>
- </configuration>
+ <supportedProjectTypes>
+ <supportedProjectType>war</supportedProjectType>
+ </supportedProjectTypes>
+ </configuration>
<executions>
<execution>
<id>bundle-manifest</id>
@@ -76,7 +76,7 @@
</goals>
<configuration>
<instructions>
- <Bundle-SymbolicName>org.eclipse.jetty.test-jetty-webapp</Bundle-SymbolicName>
+ <Bundle-SymbolicName>org.eclipse.jetty.test-jetty-webapp</Bundle-SymbolicName>
<Import-Package>javax.servlet,org.eclipse.jetty.servlets,*</Import-Package>
<Export-Package>!com.acme*</Export-Package>
<!-- the test webapp is configured via a jetty xml file
@@ -163,8 +163,8 @@
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
+ <groupId>org.eclipse.jetty.orbit</groupId>
+ <artifactId>javax.servlet</artifactId>
<scope>provided</scope>
</dependency>
<dependency>

Back to the top