jetty.project/tests/test-sessions/test-memcached-sessions/pom.xml

62 lines
2.0 KiB
XML
Raw Normal View History

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>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2024-01-03 04:12:56 -05:00
<artifactId>jetty-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2024-01-03 04:12:56 -05:00
<artifactId>jetty-server</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2024-01-03 04:12:56 -05:00
<artifactId>jetty-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
2024-01-03 04:12:56 -05:00
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.memcached</groupId>
<artifactId>jetty-memcached-sessions</artifactId>
<scope>test</scope>
</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>
<dependency>
2024-01-03 04:12:56 -05:00
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-test-helper</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
2024-01-03 04:12:56 -05:00
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
2024-01-03 04:12:56 -05:00
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
2016-06-16 23:18:27 -04:00
</dependencies>
</project>