2023-10-11 21:51:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-03 09:52:44 -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>
|
|
|
|
<groupId>org.eclipse.jetty.ee10.demos</groupId>
|
|
|
|
<artifactId>jetty-ee10-demos</artifactId>
|
2024-07-25 18:23:21 -04:00
|
|
|
<version>12.0.13-SNAPSHOT</version>
|
2022-05-03 09:52:44 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
2022-06-16 01:47:08 -04:00
|
|
|
<artifactId>jetty-ee10-demo-container-initializer</artifactId>
|
2022-05-03 09:52:44 -04:00
|
|
|
<packaging>jar</packaging>
|
2023-01-27 13:09:06 -05:00
|
|
|
<name>EE10 :: Demo :: Servlet Spec :: ServletContainerInitializer Jar</name>
|
2022-05-03 09:52:44 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sci</bundle-symbolic-name>
|
|
|
|
</properties>
|
2023-10-11 21:51:36 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-05-03 09:52:44 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2022-06-29 19:51:19 -04:00
|
|
|
<Bundle-SymbolicName>org.eclipse.jetty.ee10.demos.demo-servlet-container-initializer;singleton:=true</Bundle-SymbolicName>
|
2022-05-03 09:52:44 -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=jakarta.servlet.ServletContainerInitializer</Provide-Capability>
|
|
|
|
<Export-Package>org.example.initializer;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</Export-Package>
|
|
|
|
<_nouses>true</_nouses>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|