Steffen Nießing | 521015e | 2023-09-07 13:45:15 +0200 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | |
jersey-bot | 59a5d50 | 2024-01-07 02:21:04 +0000 | [diff] [blame] | 4 | Copyright (c) 2023, 2024 Oracle and/or its affiliates. All rights reserved. |
Steffen Nießing | 521015e | 2023-09-07 13:45:15 +0200 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 25 | <artifactId>project</artifactId> |
jersey-bot | 9727e9a | 2024-01-07 02:21:50 +0000 | [diff] [blame^] | 26 | <version>4.0.99-SNAPSHOT</version> |
Steffen Nießing | 521015e | 2023-09-07 13:45:15 +0200 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>jersey-jetty11-connector</artifactId> |
| 30 | <packaging>jar</packaging> |
| 31 | <name>jersey-connectors-jetty11</name> |
| 32 | |
| 33 | <description>Jersey Client Transport via Jetty 11.x</description> |
| 34 | |
| 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | </properties> |
| 38 | |
Maxim Nesen | 50e78da | 2023-11-09 08:15:14 +0100 | [diff] [blame] | 39 | <dependencyManagement> |
| 40 | <dependencies> |
jansupol | d8458a6 | 2023-11-16 12:58:03 +0100 | [diff] [blame] | 41 | <!-- <dependency>--> |
| 42 | <!-- <groupId>org.eclipse.jetty</groupId>--> |
| 43 | <!-- <artifactId>jetty-server</artifactId>--> |
| 44 | <!-- <version>${jetty11.version}</version>--> |
| 45 | <!-- </dependency>--> |
Maxim Nesen | 50e78da | 2023-11-09 08:15:14 +0100 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>org.eclipse.jetty</groupId> |
Maxim Nesen | 50e78da | 2023-11-09 08:15:14 +0100 | [diff] [blame] | 48 | <artifactId>jetty-client</artifactId> |
| 49 | <version>${jetty11.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.eclipse.jetty</groupId> |
| 53 | <artifactId>jetty-util</artifactId> |
| 54 | <version>${jetty11.version}</version> |
| 55 | </dependency> |
| 56 | </dependencies> |
| 57 | </dependencyManagement> |
| 58 | |
Steffen Nießing | 521015e | 2023-09-07 13:45:15 +0200 | [diff] [blame] | 59 | <dependencies> |
| 60 | <dependency> |
| 61 | <groupId>org.eclipse.jetty</groupId> |
| 62 | <artifactId>jetty-client</artifactId> |
| 63 | <version>${jetty11.version}</version> |
| 64 | <exclusions> |
| 65 | <exclusion> |
| 66 | <groupId>org.slf4j</groupId> |
| 67 | <artifactId>slf4j-api</artifactId> |
| 68 | </exclusion> |
Steffen Nießing | 521015e | 2023-09-07 13:45:15 +0200 | [diff] [blame] | 69 | </exclusions> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.eclipse.jetty</groupId> |
| 73 | <artifactId>jetty-util</artifactId> |
| 74 | <version>${jetty11.version}</version> |
| 75 | <exclusions> |
| 76 | <exclusion> |
| 77 | <groupId>org.slf4j</groupId> |
| 78 | <artifactId>slf4j-api</artifactId> |
| 79 | </exclusion> |
| 80 | </exclusions> |
| 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.slf4j</groupId> |
| 85 | <artifactId>slf4j-api</artifactId> |
| 86 | <version>${slf4j.version}</version> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.glassfish.jersey.media</groupId> |
| 91 | <artifactId>jersey-media-jaxb</artifactId> |
| 92 | <version>${project.version}</version> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.glassfish.jersey.containers</groupId> |
| 97 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 98 | <version>${project.version}</version> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.glassfish.jersey.media</groupId> |
| 103 | <artifactId>jersey-media-json-jackson</artifactId> |
| 104 | <version>${project.version}</version> |
| 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 109 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
| 110 | <version>${project.version}</version> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>jakarta.xml.bind</groupId> |
| 115 | <artifactId>jakarta.xml.bind-api</artifactId> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>com.sun.xml.bind</groupId> |
| 120 | <artifactId>jaxb-osgi</artifactId> |
| 121 | <scope>test</scope> |
| 122 | </dependency> |
| 123 | </dependencies> |
| 124 | |
| 125 | <build> |
| 126 | <plugins> |
| 127 | <plugin> |
| 128 | <groupId>com.sun.istack</groupId> |
| 129 | <artifactId>istack-commons-maven-plugin</artifactId> |
| 130 | <inherited>true</inherited> |
| 131 | </plugin> |
| 132 | <plugin> |
| 133 | <groupId>org.codehaus.mojo</groupId> |
| 134 | <artifactId>build-helper-maven-plugin</artifactId> |
| 135 | <inherited>true</inherited> |
| 136 | </plugin> |
| 137 | <plugin> |
| 138 | <groupId>org.apache.maven.plugins</groupId> |
| 139 | <artifactId>maven-compiler-plugin</artifactId> |
| 140 | </plugin> |
| 141 | <plugin> |
| 142 | <groupId>org.apache.felix</groupId> |
| 143 | <artifactId>maven-bundle-plugin</artifactId> |
| 144 | <inherited>true</inherited> |
| 145 | <configuration> |
| 146 | <instructions> |
| 147 | <Import-Package> |
| 148 | ${jetty.osgi.version}, |
| 149 | * |
| 150 | </Import-Package> |
| 151 | </instructions> |
| 152 | </configuration> |
| 153 | </plugin> |
| 154 | </plugins> |
| 155 | </build> |
| 156 | </project> |