2017-06-06 11:55:12 -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>
|
2020-11-02 10:04:51 -05:00
|
|
|
<version>9.4.35-SNAPSHOT</version>
|
2017-06-06 11:55:12 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-sessions-common</artifactId>
|
|
|
|
<name>Jetty Tests :: Sessions :: Common</name>
|
2019-06-24 11:40:30 -04:00
|
|
|
<properties>
|
2017-08-08 12:47:04 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.common</bundle-symbolic-name>
|
|
|
|
</properties>
|
2019-06-24 11:40:30 -04:00
|
|
|
<build></build>
|
2017-06-06 11:55:12 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-06-24 11:40:30 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-06-06 11:55:12 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-08-01 03:46:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-09-28 14:48:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2017-06-06 11:55:12 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|