2017-06-06 11:55:12 -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.osgi</groupId>
|
|
|
|
<artifactId>jetty-osgi-project</artifactId>
|
2020-11-20 17:05:27 -05:00
|
|
|
<version>9.4.36-SNAPSHOT</version>
|
2017-06-06 11:55:12 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>test-jetty-osgi-context</artifactId>
|
2017-08-08 12:47:04 -04:00
|
|
|
<name>Jetty :: OSGi :: Test Context</name>
|
2017-06-06 11:55:12 -04:00
|
|
|
<description>Test Jetty OSGi bundle with a ContextHandler</description>
|
|
|
|
<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>
|
2017-08-08 12:47:04 -04:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
|
|
<scope>provided</scope>
|
2017-06-06 11:55:12 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-08-08 12:47:04 -04:00
|
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
|
|
<artifactId>org.eclipse.osgi.services</artifactId>
|
|
|
|
<scope>provided</scope>
|
2017-06-06 11:55:12 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-08-08 12:47:04 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
2017-06-06 11:55:12 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2017-08-08 12:47:04 -04:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/context</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2017-06-06 11:55:12 -04:00
|
|
|
|
2017-08-08 12:47:04 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
2019-06-24 11:40:30 -04:00
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
2017-08-08 12:47:04 -04:00
|
|
|
<skip>true</skip>
|
|
|
|
</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 accommodate pretty much any versions
|
|
|
|
of the packages it uses; no need to reflect some tight dependency determined at
|
|
|
|
compilation time. -->
|
|
|
|
<_nouses>true</_nouses>
|
2020-07-14 08:22:38 -04:00
|
|
|
<DynamicImport-Package>org.eclipse.jetty.*;version="[$(version;==;${parsedVersion.osgiVersion}),$(version;+;${parsedVersion.osgiVersion}))"</DynamicImport-Package>
|
2017-08-08 12:47:04 -04:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2017-06-06 11:55:12 -04:00
|
|
|
</project>
|