2020-09-28 10:08:35 -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">
|
2024-01-03 04:12:56 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-28 10:08:35 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>tests-parent</artifactId>
|
2024-06-27 12:16:43 -04:00
|
|
|
<version>10.0.23-SNAPSHOT</version>
|
2020-09-28 10:08:35 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-cdi</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Test :: CDI</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.cdi.tests</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-cdi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
</dependency>
|
2020-09-28 10:08:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-javax-server</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-jetty-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
2020-09-28 10:08:35 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.weld.servlet</groupId>
|
|
|
|
<artifactId>weld-servlet-core</artifactId>
|
|
|
|
<version>${weld.version}</version>
|
|
|
|
<scope>test</scope>
|
2021-09-20 21:16:50 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
2021-09-23 11:29:23 -04:00
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.enterprise</groupId>
|
|
|
|
<artifactId>cdi-api</artifactId>
|
2021-09-20 21:16:50 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-09-28 10:08:35 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
2021-03-31 03:36:15 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-09-28 10:08:35 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|