2009-11-09 01:20:48 +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.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-project</artifactId>
|
2016-04-14 13:21:34 -07:00
|
|
|
<version>9.2.16.v20160414</version>
|
2009-11-09 01:20:48 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-httpservice</artifactId>
|
|
|
|
<name>Jetty :: OSGi :: HttpService</name>
|
|
|
|
<description>Jetty OSGi HttpService bundle</description>
|
2013-05-21 13:10:07 -05:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2010-03-30 18:45:31 +00:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.httpservice</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-11-09 01:20:48 +00:00
|
|
|
<dependencies>
|
2011-05-03 07:34:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
</dependency>
|
2009-11-09 01:20:48 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.equinox.http</groupId>
|
|
|
|
<artifactId>servlet</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-05-20 08:33:57 +00:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
2014-04-10 11:23:13 +10:00
|
|
|
<scope>provided</scope>
|
2009-11-09 01:20:48 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-09-07 13:46:51 +10:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2009-11-09 01:20:48 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2009-12-10 11:03:13 +00:00
|
|
|
|
2009-11-09 01:20:48 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2010-03-03 19:56:10 +00:00
|
|
|
<copy todir="target/classes/contexts">
|
2010-03-05 21:14:22 +00:00
|
|
|
<fileset dir="contexts" />
|
2010-03-03 19:56:10 +00:00
|
|
|
</copy>
|
2009-11-09 01:20:48 +00:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</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-11-09 01:20:48 +00:00
|
|
|
<configuration>
|
2009-12-10 11:03:13 +00:00
|
|
|
<archive>
|
2009-11-09 01:20:48 +00:00
|
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-04-27 08:06:41 +10:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>bundle-manifest</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
2012-09-24 13:04:57 +08:00
|
|
|
<goal>manifest</goal>
|
2012-04-27 08:06:41 +10:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.eclipse.jetty.osgi.httpservice</Bundle-SymbolicName>
|
|
|
|
<Bundle-Name>OSGi HttpService</Bundle-Name>
|
|
|
|
<Jetty-ContextFilePath>contexts/httpservice.xml</Jetty-ContextFilePath>
|
2013-09-02 17:13:20 +10:00
|
|
|
<Import-Package>org.eclipse.jetty.server.handler;version="[9.1,10.0)",
|
|
|
|
org.eclipse.jetty.util.component;version="[9.1,10.0)",
|
|
|
|
org.eclipse.jetty.server.session;version="[9.1,10.0)",
|
|
|
|
org.eclipse.jetty.servlet;version="[9.1,10.0)",
|
2012-04-27 08:06:41 +10:00
|
|
|
org.eclipse.equinox.http.servlet,
|
|
|
|
*
|
|
|
|
</Import-Package>
|
|
|
|
<_nouses>true</_nouses>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</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.osgi.httpservice.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-11-09 01:20:48 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2010-04-27 19:28:44 +00:00
|
|
|
</project>
|