2012-02-10 14:19:13 +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-02-19 13:06:42 -06:00
|
|
|
<version>10.0.2-SNAPSHOT</version>
|
2012-02-10 14:19:13 +11:00
|
|
|
</parent>
|
2012-02-10 14:49:07 +11:00
|
|
|
<artifactId>test-mongodb-sessions</artifactId>
|
2012-02-10 14:19:13 +11:00
|
|
|
<name>Jetty Tests :: Sessions :: Mongo</name>
|
2014-08-15 19:35:49 +10:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.mongo</bundle-symbolic-name>
|
2018-03-28 21:14:15 +11:00
|
|
|
<embedmongo.host>localhost</embedmongo.host>
|
2020-05-08 07:06:03 +10:00
|
|
|
<!-- if changing this version please update default in MongoTestHelper you will get thanks from Eclipse IDE users -->
|
|
|
|
<mongo.docker.version>2.2.7</mongo.docker.version>
|
2014-08-15 19:35:49 +10:00
|
|
|
</properties>
|
2012-02-10 14:19:13 +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>
|
2020-11-24 09:38:30 +10:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<mongo.docker.version>${mongo.docker.version}</mongo.docker.version>
|
|
|
|
</systemPropertyVariables>
|
2012-02-10 14:19:13 +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>
|
2012-02-10 14:19:13 +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>
|
2019-06-24 17:42:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2019-06-24 17:42:39 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2019-06-24 17:42:39 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2019-06-24 17:42:39 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-sessions-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2019-06-24 17:42:39 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-nosql</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2019-06-24 17:42:39 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2019-06-24 17:42:39 +02:00
|
|
|
</dependency>
|
2020-03-19 17:46:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-03-20 09:55:15 -05:00
|
|
|
<scope>test</scope>
|
2020-03-19 17:46:41 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-09-20 11:42:21 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-05-08 07:06:03 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-02-10 14:19:13 +11:00
|
|
|
</dependencies>
|
|
|
|
</project>
|