blob: 2d6ee06a8f0f9033b138979bea37f3c5acebc4b4 [file] [log] [blame]
Jan Supol12a05732018-04-25 17:50:03 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
4 Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v. 2.0, which is available at
8 http://www.eclipse.org/legal/epl-2.0.
9
10 This Source Code may also be made available under the following Secondary
11 Licenses when the conditions for such availability set forth in the
12 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13 version 2 with the GNU Classpath Exception, which is available at
14 https://www.gnu.org/software/classpath/license.html.
15
16 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17
18-->
19
20<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">
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
25 <artifactId>project</artifactId>
jersey-botfb1f60b2019-09-11 12:03:03 +000026 <version>2.29.1</version>
Jan Supol12a05732018-04-25 17:50:03 +020027 </parent>
28
29 <artifactId>jersey-test-framework-provider-jdk-http</artifactId>
30 <packaging>jar</packaging>
31 <name>jersey-test-framework-provider-jdk-http</name>
32
33 <description>Jersey Test Framework - JDK HTTP container</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.glassfish.jersey.test-framework</groupId>
38 <artifactId>jersey-test-framework-core</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.glassfish.jersey.containers</groupId>
43 <artifactId>jersey-container-jdk-http</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.glassfish.jersey.core</groupId>
48 <artifactId>jersey-server</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.glassfish.jersey.core</groupId>
53 <artifactId>jersey-client</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56
57 </dependencies>
58</project>