2015-04-02 12:20:12 +11: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-sessions-parent</artifactId>
|
2021-10-06 14:51:32 -05:00
|
|
|
<version>10.0.8-SNAPSHOT</version>
|
2015-04-02 12:20:12 +11:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-infinispan-sessions</artifactId>
|
|
|
|
<name>Jetty Tests :: Sessions :: Infinispan</name>
|
2015-04-02 14:20:39 +11:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.infinispan</bundle-symbolic-name>
|
2020-05-08 14:14:22 +10:00
|
|
|
<!-- if changing this version please update default in RemoteInfinispanTestSupport you will get thanks from Eclipse IDE users -->
|
2021-09-21 11:16:50 +10:00
|
|
|
<infinispan.docker.image.version>11.0.9.Final</infinispan.docker.image.version>
|
2020-05-11 11:41:42 +10:00
|
|
|
<!-- from 10.xx it has changed to jboss/infinispan -->
|
2021-09-21 11:16:50 +10:00
|
|
|
<infinispan.docker.image.name>infinispan/server</infinispan.docker.image.name>
|
2015-04-02 14:20:39 +11:00
|
|
|
</properties>
|
2015-04-02 12:20:12 +11:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2015-03-11 17:29:26 +11:00
|
|
|
<includes>
|
2020-11-24 09:38:30 +10:00
|
|
|
<include>**/*.java</include>
|
2015-03-11 17:29:26 +11:00
|
|
|
</includes>
|
2021-05-17 16:18:06 +10:00
|
|
|
<argLine>--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED</argLine>
|
2020-11-24 09:38:30 +10:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<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>
|
2015-04-02 12:20:12 +11:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack</id>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-policy</artifactId>
|
2018-09-04 19:07:17 -05:00
|
|
|
<version>${jetty-test-policy.version}</version>
|
2015-04-02 12:20:12 +11:00
|
|
|
<type>jar</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<includes>**/*.keystore,**/*.pem</includes>
|
|
|
|
<outputDirectory>${jetty.test.policy.loc}</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
2018-04-06 11:04:27 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2018-04-06 11:04:27 +10:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2018-04-06 11:04:27 +10:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2018-04-06 11:04:27 +10:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-sessions-common</artifactId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2018-04-06 11:04:27 +10:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2019-04-18 17:24:25 +10:00
|
|
|
<artifactId>infinispan-remote-query</artifactId>
|
2020-08-31 12:39:30 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>infinispan-embedded-query</artifactId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2018-04-06 11:04:27 +10:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<optional>true</optional>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2018-04-06 11:04:27 +10:00
|
|
|
</dependency>
|
2015-04-02 12:20:12 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-09-20 13:31:49 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-core</artifactId>
|
|
|
|
<scope>test</scope>
|
2021-09-21 11:16:50 +10:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.wildfly.common</groupId>
|
|
|
|
<artifactId>wildfly-common</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-09-20 13:31:49 +10:00
|
|
|
</dependency>
|
2019-04-18 17:24:25 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-query</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-03-11 17:29:26 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-client-hotrod</artifactId>
|
|
|
|
<scope>test</scope>
|
2015-05-20 11:32:53 +02:00
|
|
|
</dependency>
|
2018-11-06 10:03:48 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.infinispan</groupId>
|
|
|
|
<artifactId>infinispan-remote-query-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-04-18 17:24:25 +10:00
|
|
|
<dependency>
|
2019-06-24 17:42:39 +02:00
|
|
|
<groupId>org.infinispan.protostream</groupId>
|
|
|
|
<artifactId>protostream</artifactId>
|
2019-04-18 17:24:25 +10:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-11-04 10:09:15 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>${gson.version}</version>
|
2019-04-18 17:24:25 +10:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-04-18 17:24:25 +10:00
|
|
|
<groupId>org.slf4j</groupId>
|
2020-05-08 14:14:22 +10:00
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
2019-04-18 17:24:25 +10:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-11-17 16:20:16 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-04-02 12:20:12 +11:00
|
|
|
</dependencies>
|
2021-05-17 16:24:40 +10:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jdk16</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[16,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-04-02 12:20:12 +11:00
|
|
|
</project>
|