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>
|
2019-07-11 16:54:21 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2010-01-25 20:37:03 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-sessions-common</artifactId>
|
|
|
|
<name>Jetty Tests :: Sessions :: Common</name>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2019-06-24 11:42:39 -04:00
|
|
|
<properties>
|
2014-08-15 05:35:49 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.sessions.common</bundle-symbolic-name>
|
|
|
|
</properties>
|
2019-06-24 11:42:39 -04:00
|
|
|
<build></build>
|
2010-01-25 20:37:03 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2010-01-25 20:37:03 -05:00
|
|
|
</dependency>
|
2011-01-28 13:58:47 -05:00
|
|
|
<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>
|
2010-01-25 20:37:03 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|