2023-10-11 21:51:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-07-07 19:51:29 -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/xsd/maven-4.0.0.xsd">
|
2023-10-11 21:51:36 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-07-07 19:51:29 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-distribution</artifactId>
|
2024-03-29 16:20:11 -04:00
|
|
|
<version>12.0.9-SNAPSHOT</version>
|
2022-07-07 19:51:29 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-distribution-common</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2023-10-11 21:51:36 -04:00
|
|
|
<name>Tests :: Distribution :: Common</name>
|
2022-07-07 19:51:29 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.tests.distribution.common</bundle-symbolic-name>
|
2023-10-11 21:51:36 -04:00
|
|
|
<!-- <junit.jupiter.execution.parallel.enabled>false</junit.jupiter.execution.parallel.enabled>-->
|
|
|
|
<junit.jupiter.execution.parallel.config.fixed.parallelism>2</junit.jupiter.execution.parallel.config.fixed.parallelism>
|
2022-07-07 19:51:29 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-10-11 21:51:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-artifact</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-resolver-provider</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-impl</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-spi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-file</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-http</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-util</artifactId>
|
|
|
|
</dependency>
|
2023-06-29 06:55:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-xml</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2024-04-02 06:18:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-home</artifactId>
|
|
|
|
<type>zip</type>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2022-07-07 19:51:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
|
|
<artifactId>jetty-ee10-test-badinit-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
2023-12-05 17:48:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.ee10</groupId>
|
|
|
|
<artifactId>jetty-ee10-test-weld-cdi-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2022-07-07 19:51:29 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-test-badinit-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
2023-12-05 17:48:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-test-weld-cdi-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2022-07-07 19:51:29 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
2024-01-24 12:56:27 -05:00
|
|
|
<artifactId>jetty-testers</artifactId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<version>${project.version}</version>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2022-08-12 03:52:53 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>jetty-websocket-core-client</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
2024-01-24 12:56:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-07 19:51:29 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<scope>test</scope>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-infinispan-common</artifactId>
|
|
|
|
<scope>test</scope>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-infinispan-remote-query</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2022-12-01 12:07:38 -05:00
|
|
|
<version>${project.version}</version>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
2022-08-11 04:23:33 -04:00
|
|
|
<artifactId>jetty-http2-client</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
2022-08-11 04:23:33 -04:00
|
|
|
<artifactId>jetty-http2-client-transport</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-10-05 06:16:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
|
|
<artifactId>jetty-http3-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
|
|
<artifactId>jetty-http3-client-transport</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-07 19:51:29 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>gcloud</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>mariadb</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>mongodb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>testcontainers</artifactId>
|
2022-07-07 19:51:29 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-11-07 00:37:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-digest</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-external</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-gs2</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-gssapi</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-oauth2</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-plain</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wildfly.security</groupId>
|
|
|
|
<artifactId>wildfly-elytron-sasl-scram</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-07-07 19:51:29 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven.jar.plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-04-22 04:28:00 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables combine.children="append">
|
|
|
|
<infinispan.docker.image.version>${infinispan.docker.image.version}</infinispan.docker.image.version>
|
|
|
|
<infinispan.docker.image.name>${infinispan.docker.image.name}</infinispan.docker.image.name>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-07-07 19:51:29 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|