2013-02-19 17:26:30 -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>
|
2015-10-07 18:41:32 -04:00
|
|
|
<version>9.4.0-SNAPSHOT</version>
|
2013-02-19 17:26:30 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>test-jetty-osgi-context</artifactId>
|
|
|
|
<name>Jetty :: OSGi :: Context</name>
|
|
|
|
<description>Test Jetty OSGi bundle with a ContextHandler</description>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2013-02-19 17:26:30 -05:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.testcontext</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>provided</scope>
|
2013-02-19 17:26:30 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
2014-04-09 21:23:13 -04:00
|
|
|
<scope>provided</scope>
|
2013-02-19 17:26:30 -05:00
|
|
|
</dependency>
|
2013-09-02 03:13:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
|
|
|
</dependency>
|
2013-02-19 17:26:30 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/context</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2013-08-16 07:43:54 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2013-02-19 17:26:30 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<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>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.eclipse.jetty.osgi.testcontext;singleton:=true</Bundle-SymbolicName>
|
|
|
|
<Bundle-Name>Jetty OSGi Test Context</Bundle-Name>
|
|
|
|
<Bundle-Activator>com.acme.osgi.Activator</Bundle-Activator>
|
|
|
|
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
|
|
|
|
<!-- disable the uses directive: jetty will accomodate pretty much any versions
|
|
|
|
of the packages it uses; no need to reflect some tight dependency determined at
|
|
|
|
compilation time. -->
|
|
|
|
<_nouses>true</_nouses>
|
|
|
|
<Import-Package>
|
2013-09-02 03:13:20 -04:00
|
|
|
javax.servlet;version="[3.1,3.2)",
|
|
|
|
javax.servlet.resources;version="[3.1,3.2)",
|
2013-02-19 17:26:30 -05:00
|
|
|
org.osgi.framework,
|
|
|
|
org.osgi.service.cm;version="1.2.0",
|
|
|
|
org.osgi.service.packageadmin,
|
|
|
|
org.osgi.service.startlevel;version="1.0.o",
|
|
|
|
org.osgi.service.url;version="1.0.0",
|
|
|
|
org.osgi.util.tracker;version="1.3.0",
|
|
|
|
org.slf4j;resolution:=optional,
|
|
|
|
org.slf4j.spi;resolution:=optional,
|
|
|
|
org.slf4j.helpers;resolution:=optional,
|
|
|
|
org.xml.sax,
|
|
|
|
org.xml.sax.helpers,
|
|
|
|
*
|
|
|
|
</Import-Package>
|
2013-09-02 03:13:20 -04:00
|
|
|
<DynamicImport-Package>org.eclipse.jetty.*;version="[9.1,10.0)"</DynamicImport-Package>
|
2013-02-19 17:26:30 -05:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|