2010-01-25 20:37:03 -05: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>
|
2022-05-03 12:45:43 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>test-ee9-sessions</artifactId>
|
2022-05-03 09:50:54 -04:00
|
|
|
<version>12.0.0-SNAPSHOT</version>
|
2022-05-04 12:41:12 -04:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2010-01-25 20:37:03 -05:00
|
|
|
</parent>
|
2022-05-03 12:45:43 -04:00
|
|
|
<artifactId>test-ee9-jdbc-sessions</artifactId>
|
|
|
|
<name>Jetty EE9 Tests :: Sessions :: JDBC</name>
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.jdbc</bundle-symbolic-name>
|
|
|
|
</properties>
|
2010-01-25 20:37:03 -05:00
|
|
|
<build>
|
2011-10-31 18:42:21 -04:00
|
|
|
<plugins>
|
2020-05-23 01:09:28 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-05-26 17:35:32 -04:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<mariadb.docker.version>${mariadb.docker.version}</mariadb.docker.version>
|
|
|
|
</systemPropertyVariables>
|
2020-05-23 01:09:28 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-10-31 18:42:21 -04:00
|
|
|
</plugins>
|
2010-01-25 20:37:03 -05:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
2019-06-24 11:42:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
2022-05-04 12:41:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-session</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-session</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-webapp</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-03 12:45:43 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>test-ee9-sessions-common</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-23 01:09:28 -04:00
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
2019-06-24 11:42:39 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-09-20 14:42:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-05-23 01:09:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>mariadb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-01-25 20:37:03 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|