2009-03-24 17:07:27 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-06-16 15:39:41 -04:00
|
|
|
<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">
|
2009-03-24 17:07:27 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2011-01-27 20:16:38 -05:00
|
|
|
<version>7.3.0-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<name>Jetty :: Servlet Handling</name>
|
|
|
|
<description>Jetty Servlet Container</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.servlet</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-03-24 17:07:27 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2009-04-01 14:06:52 -04:00
|
|
|
<version>${felix.bundle.version}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
2011-01-12 03:00:48 -05:00
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Import-Package>org.eclipse.jetty.jmx.*;version="[7.3,8)";resolution:=optional,*</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
2009-03-24 17:07:27 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<!--
|
|
|
|
Required for OSGI
|
|
|
|
-->
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
2010-07-05 09:50:26 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>tests</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugin>
|
2010-06-16 13:21:50 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.servlet.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-03-24 17:07:27 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2010-05-11 12:14:09 -04:00
|
|
|
<version>${junit4-version}</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2011-01-06 13:04:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|