2023-10-11 21:51:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-10-09 18:12:15 -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">
|
2023-10-11 21:51:36 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-10-09 18:12:15 -04:00
|
|
|
<parent>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9</artifactId>
|
2024-04-26 08:42:57 -04:00
|
|
|
<version>12.1.0-SNAPSHOT</version>
|
2014-10-09 18:12:15 -04:00
|
|
|
</parent>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-ee9-cdi</artifactId>
|
2019-06-06 12:33:21 -04:00
|
|
|
<packaging>jar</packaging>
|
2023-10-11 21:51:36 -04:00
|
|
|
<name>EE9 :: CDI</name>
|
2019-06-06 12:33:21 -04:00
|
|
|
<properties>
|
2019-08-07 22:04:07 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.cdi</bundle-symbolic-name>
|
2019-06-06 12:33:21 -04:00
|
|
|
</properties>
|
2019-08-07 22:04:07 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-ee9-annotations</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-ee9-webapp</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependencies>
|
2019-06-06 12:33:21 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-10-11 21:51:36 -04:00
|
|
|
<plugin>
|
2021-06-22 18:32:21 -04:00
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2023-10-11 21:51:36 -04:00
|
|
|
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
|
|
|
|
<Provide-Capability>osgi.serviceloader; osgi.serviceloader=org.eclipse.jetty.ee9.webapp.Configuration,
|
|
|
|
osgi.serviceloader; osgi.serviceloader=jakarta.servlet.ServletContainerInitializer</Provide-Capability>
|
2021-06-22 18:32:21 -04:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-09-24 16:41:39 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2021-09-30 06:41:49 -04:00
|
|
|
<version>${maven.surefire.plugin.version}</version>
|
2020-09-24 16:41:39 -04:00
|
|
|
<configuration>
|
2023-03-29 11:25:31 -04:00
|
|
|
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine>
|
2023-10-11 21:51:36 -04:00
|
|
|
<additionalClasspathElements></additionalClasspathElements>
|
2020-09-24 16:41:39 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-06-06 12:33:21 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-10-09 18:12:15 -04:00
|
|
|
</project>
|