2016-06-16 23:18:27 -04: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>
|
2023-12-15 15:49:33 -05:00
|
|
|
<version>10.0.20-SNAPSHOT</version>
|
2016-06-16 23:18:27 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-memcached-sessions</artifactId>
|
|
|
|
<name>Jetty Tests :: Sessions :: Memcached</name>
|
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.memcached</bundle-symbolic-name>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2019-06-24 11:42:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<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>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-server</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>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-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.memcached</groupId>
|
|
|
|
<artifactId>jetty-memcached-sessions</artifactId>
|
2020-03-20 10:55:15 -04:00
|
|
|
<scope>test</scope>
|
2019-06-24 11:42:39 -04:00
|
|
|
</dependency>
|
2016-06-16 23:18:27 -04:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-sessions-common</artifactId>
|
2016-06-16 23:18:27 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2018-11-06 04:03:48 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-05-18 01:35:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2020-05-18 01:35:19 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>testcontainers</artifactId>
|
2018-11-06 04:03:48 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-06-16 23:18:27 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|