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>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-sessions-parent</artifactId>
|
2020-12-02 16:30:13 -05:00
|
|
|
<version>10.0.1-SNAPSHOT</version>
|
2010-01-25 20:37:03 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-jdbc-sessions</artifactId>
|
|
|
|
<name>Jetty Tests :: Sessions :: JDBC</name>
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.jdbc</bundle-symbolic-name>
|
2020-05-23 01:09:28 -04:00
|
|
|
<mariadb.docker.version>10.3.6</mariadb.docker.version>
|
2014-08-15 05:35:49 -04:00
|
|
|
</properties>
|
2010-01-25 20:37:03 -05:00
|
|
|
<build>
|
2011-10-31 18:42:21 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
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>
|
|
|
|
<version>${project.version}</version>
|
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-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
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>
|
|
|
|
<version>${project.version}</version>
|
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.tests</groupId>
|
|
|
|
<artifactId>test-sessions-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
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>
|
|
|
|
<version>${testcontainers.version}</version>
|
|
|
|
<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>
|
2020-11-30 08:22:50 -05:00
|
|
|
<version>${maria.version}</version>
|
2020-05-23 01:09:28 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-01-25 20:37:03 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|