2009-03-28 22:15:22 -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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2010-07-05 10:09:39 -04:00
|
|
|
<version>7.1.5.v20100705</version>
|
2009-03-28 22:15:22 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-continuation</artifactId>
|
|
|
|
<name>Jetty :: Continuation</name>
|
|
|
|
<description>Asynchronous API</description>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.continuation</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-03-28 22:15:22 -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-28 22:15:22 -04:00
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
2009-04-01 20:44:32 -04:00
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2009-12-29 17:52:23 -05:00
|
|
|
<Import-Package>javax.servlet.*;version="[2.5,3.1)",org.mortbay.log.*;version="[6.1,7)";resolution:=optional,org.mortbay.util.ajax.*;version="[6.1,7)";resolution:=optional,*</Import-Package>
|
2009-04-01 20:44:32 -04:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
2009-03-28 22:15:22 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2010-07-05 09:50:26 -04: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-28 22:15:22 -04:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</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.continuation.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-03-28 22:15:22 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2009-05-23 07:33:40 -04:00
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
2009-03-28 22:15:22 -04:00
|
|
|
<artifactId>servlet-api</artifactId>
|
2010-02-28 06:22:01 -05:00
|
|
|
<version>3.0.20100224</version>
|
2009-05-23 07:33:40 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
2009-07-09 21:16:13 -04:00
|
|
|
<version>6.1.15</version>
|
2009-05-23 07:33:40 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2009-03-28 22:15:22 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|