2019-08-07 22:04:07 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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.tests</groupId>
|
|
|
|
<artifactId>test-webapps-parent</artifactId>
|
2021-10-06 15:51:32 -04:00
|
|
|
<version>10.0.8-SNAPSHOT</version>
|
2019-08-07 22:04:07 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>test-owb-cdi-webapp</artifactId>
|
|
|
|
<name>Test :: CDI On Jetty :: OWB Demo Webapp</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.cdi.owb</bundle-symbolic-name>
|
2021-09-13 14:27:16 -04:00
|
|
|
<openwebbeans.version>2.0.23</openwebbeans.version>
|
2019-08-07 22:04:07 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
2019-08-12 21:14:44 -04:00
|
|
|
<finalName>owb-cdi-demo</finalName>
|
2019-08-07 22:04:07 -04:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2019-08-09 18:39:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-servlet-api</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-cdi-common-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- included in webapp -->
|
|
|
|
<dependency>
|
2021-11-01 19:37:27 -04:00
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-11-01 19:37:27 -04:00
|
|
|
<groupId>jakarta.enterprise</groupId>
|
|
|
|
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-11-01 19:37:27 -04:00
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-11-01 19:37:27 -04:00
|
|
|
<groupId>jakarta.interceptor</groupId>
|
|
|
|
<artifactId>jakarta.interceptor-api</artifactId>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openwebbeans</groupId>
|
|
|
|
<artifactId>openwebbeans-web</artifactId>
|
2020-10-08 08:31:20 -04:00
|
|
|
<version>${openwebbeans.version}</version>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openwebbeans</groupId>
|
|
|
|
<artifactId>openwebbeans-jetty9</artifactId>
|
2020-10-08 08:31:20 -04:00
|
|
|
<version>${openwebbeans.version}</version>
|
2019-08-07 22:04:07 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|