Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2012-08-23 19:09:29 +0000
committerJesse McConnell2012-08-23 19:09:29 +0000
commit6dadf2a8a463c787a81906e66135e2f44dd44f6b (patch)
tree088d2e8b73f433c7d8f69f73b1ac628b1e145f57 /jetty-ajp/pom.xml
parenta77093dd94110c971e9e139dcc9f6d54b14f2830 (diff)
downloadorg.eclipse.jetty.project-6dadf2a8a463c787a81906e66135e2f44dd44f6b.tar.gz
org.eclipse.jetty.project-6dadf2a8a463c787a81906e66135e2f44dd44f6b.tar.xz
org.eclipse.jetty.project-6dadf2a8a463c787a81906e66135e2f44dd44f6b.zip
[Bug 387928] retire jetty-ajp
Diffstat (limited to 'jetty-ajp/pom.xml')
-rw-r--r--jetty-ajp/pom.xml82
1 files changed, 0 insertions, 82 deletions
diff --git a/jetty-ajp/pom.xml b/jetty-ajp/pom.xml
deleted file mode 100644
index b83977d24b..0000000000
--- a/jetty-ajp/pom.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-<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">
- <parent>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-project</artifactId>
- <version>9.0.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jetty-ajp</artifactId>
- <name>Jetty :: AJP</name>
- <properties>
- <bundle-symbolic-name>${project.groupId}.ajp</bundle-symbolic-name>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <extensions>true</extensions>
- <executions>
- <execution>
- <goals>
- <goal>manifest</goal>
- </goals>
- <configuration>
- <instructions>
- <Import-Package>javax.servlet.*;version="2.6.0",*</Import-Package>
- </instructions>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <!--
- Required for OSGI
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <descriptorRefs>
- <descriptorRef>config</descriptorRef>
- </descriptorRefs>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <configuration>
- <onlyAnalyze>org.eclipse.jetty.ajp.*</onlyAnalyze>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-server</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>

Back to the top