2009-11-08 20:20:48 -05: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>
|
2017-01-20 10:33:43 -05:00
|
|
|
<version>9.3.17-SNAPSHOT</version>
|
2009-11-08 20:20:48 -05: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 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.httpservice</bundle-symbolic-name>
|
|
|
|
</properties>
|
2009-11-08 20:20:48 -05:00
|
|
|
<dependencies>
|
2011-05-03 03:34:18 -04: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-08 20:20:48 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.equinox.http</groupId>
|
|
|
|
<artifactId>servlet</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-05-20 04:33:57 -04:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>provided</scope>
|
2009-11-08 20:20:48 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-09-06 23:46:51 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2009-11-08 20:20:48 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2009-12-10 06:03:13 -05:00
|
|
|
|
2009-11-08 20:20:48 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2010-03-03 14:56:10 -05:00
|
|
|
<copy todir="target/classes/contexts">
|
2010-03-05 16:14:22 -05:00
|
|
|
<fileset dir="contexts" />
|
2010-03-03 14:56:10 -05:00
|
|
|
</copy>
|
2009-11-08 20:20:48 -05: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 09:50:26 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2009-11-08 20:20:48 -05:00
|
|
|
<configuration>
|
2009-12-10 06:03:13 -05:00
|
|
|
<archive>
|
2009-11-08 20:20:48 -05:00
|
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-04-26 18:06:41 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<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 03:13:20 -04: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-26 18:06:41 -04:00
|
|
|
org.eclipse.equinox.http.servlet,
|
|
|
|
*
|
|
|
|
</Import-Package>
|
|
|
|
<_nouses>true</_nouses>
|
|
|
|
</instructions>
|
|
|
|
</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.osgi.httpservice.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-11-08 20:20:48 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2010-04-27 15:28:44 -04:00
|
|
|
</project>
|