2009-03-24 21:07:27 +00: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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2011-03-04 03:58:46 +00:00
|
|
|
<version>7.3.2-SNAPSHOT</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<name>Jetty :: Server Core</name>
|
|
|
|
<description>The core jetty server artifact.</description>
|
2009-04-01 18:06:52 +00:00
|
|
|
<url>${jetty.url}</url>
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-03-24 21:07:27 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2009-04-01 18:06:52 +00:00
|
|
|
<version>${felix.bundle.version}</version>
|
2009-03-24 21:07:27 +00:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2009-04-01 18:06:52 +00:00
|
|
|
<id>generate-manifest</id>
|
2009-03-24 21:07:27 +00:00
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
2009-04-11 13:39:51 +00:00
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2011-01-12 08:00:48 +00:00
|
|
|
<Import-Package>javax.servlet.*;version="[2.5,3.0)",org.eclipse.jetty.jmx.*;version="[7.3,8)";resolution:=optional,*</Import-Package>
|
2009-04-11 13:39:51 +00:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2009-03-24 21:07:27 +00:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2010-07-05 13:50:26 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>artifact-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>test-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2009-03-24 21:07:27 +00:00
|
|
|
<configuration>
|
2010-05-12 11:28:48 +00:00
|
|
|
<archive>
|
2009-03-24 21:07:27 +00:00
|
|
|
<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>
|
|
|
|
<descriptors>
|
2009-03-24 21:46:34 +00:00
|
|
|
<!-- <descriptor>site-component.xml</descriptor>-->
|
2009-03-24 21:07:27 +00:00
|
|
|
<descriptor>config.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-06-16 17:21:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.server.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-03-24 21:07:27 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2011-02-09 22:45:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2009-04-01 05:05:52 +00:00
|
|
|
<groupId>javax.servlet</groupId>
|
2009-03-24 21:07:27 +00:00
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</dependency>
|
2009-03-29 02:15:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-continuation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-http</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2011-01-06 18:04:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2009-03-24 21:07:27 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|