2012-11-02 00:41:58 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2020-09-29 12:37:22 -04:00
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demos-parent</artifactId>
|
2023-04-11 14:23:25 -04:00
|
|
|
<version>10.0.16-SNAPSHOT</version>
|
2020-09-29 12:37:22 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2012-11-02 00:41:58 -04:00
|
|
|
</parent>
|
2020-09-29 12:37:22 -04:00
|
|
|
<artifactId>demo-container-initializer</artifactId>
|
2012-11-02 00:41:58 -04:00
|
|
|
<packaging>jar</packaging>
|
2020-09-29 12:37:22 -04:00
|
|
|
<name>Demo :: Servlet Spec :: ServletContainerInitializer Jar</name>
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sci</bundle-symbolic-name>
|
|
|
|
</properties>
|
2012-11-02 00:41:58 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-09-05 03:49:17 -04:00
|
|
|
<plugin>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2020-09-29 12:37:22 -04:00
|
|
|
<Bundle-SymbolicName>org.eclipse.jetty.demos.demo-servlet-container-initializer;singleton:=true</Bundle-SymbolicName>
|
2019-06-24 11:42:39 -04:00
|
|
|
<Bundle-Description>A bundle containing a ServletContainerInitializer for testing</Bundle-Description>
|
|
|
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
|
|
|
<Provide-Capability>osgi.serviceloader; osgi.serviceloader=javax.servlet.ServletContainerInitializer</Provide-Capability>
|
|
|
|
<Export-Package>com.acme.initializer;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</Export-Package>
|
|
|
|
<_nouses>true</_nouses>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
2014-09-05 03:49:17 -04:00
|
|
|
</plugin>
|
2012-11-02 00:41:58 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2012-11-29 23:45:36 -05:00
|
|
|
<dependency>
|
2018-11-29 10:51:29 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-servlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
2012-11-29 23:45:36 -05:00
|
|
|
</dependency>
|
2012-11-02 00:41:58 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|