Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
jersey-bot | 59a5d50 | 2024-01-07 02:21:04 +0000 | [diff] [blame] | 4 | Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved. |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +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.media</groupId> |
| 25 | <artifactId>project</artifactId> |
jersey-bot | 9727e9a | 2024-01-07 02:21:50 +0000 | [diff] [blame] | 26 | <version>4.0.99-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>jersey-media-json-jettison</artifactId> |
| 30 | <packaging>jar</packaging> |
| 31 | <name>jersey-media-json-jettison</name> |
| 32 | |
| 33 | <description> |
| 34 | Jersey JSON Jettison entity providers support module. |
| 35 | </description> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>com.sun.istack</groupId> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 41 | <artifactId>istack-commons-maven-plugin</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 42 | <inherited>true</inherited> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.codehaus.mojo</groupId> |
| 46 | <artifactId>build-helper-maven-plugin</artifactId> |
| 47 | <inherited>true</inherited> |
| 48 | </plugin> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>maven-bundle-plugin</artifactId> |
| 52 | <inherited>true</inherited> |
| 53 | <extensions>true</extensions> |
| 54 | <configuration> |
| 55 | <instructions> |
Arjan Tijms | 0f8d753 | 2021-12-13 11:50:18 +0100 | [diff] [blame] | 56 | <!-- Explicitly set versions for packages from GlassFish to allow future uptake of GlassFish 7.x--> |
| 57 | <Import-Package> |
| 58 | jakarta.xml.bind.*;version="[3.0,5)", |
| 59 | * |
| 60 | </Import-Package> |
| 61 | |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 62 | <Export-Package>org.glassfish.jersey.jettison.*</Export-Package> |
Arjan Tijms | 0f8d753 | 2021-12-13 11:50:18 +0100 | [diff] [blame] | 63 | |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 64 | <!--<Import-Package> |
| 65 | com.sun.xml.bind.annotation;resolution:=optional,com.sun.xml.bind.v2.*;resolution:=optional, * |
| 66 | </Import-Package>--> |
| 67 | </instructions> |
| 68 | <unpackBundle>true</unpackBundle> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | </build> |
| 73 | |
| 74 | <dependencies> |
| 75 | <dependency> |
Maxim Nesen | 0c6b2c5 | 2020-04-17 14:37:45 +0200 | [diff] [blame] | 76 | <groupId>jakarta.xml.bind</groupId> |
| 77 | <artifactId>jakarta.xml.bind-api</artifactId> |
| 78 | </dependency> |
Jan Supol | 767311d | 2020-10-05 10:50:36 +0200 | [diff] [blame] | 79 | |
Maxim Nesen | 0c6b2c5 | 2020-04-17 14:37:45 +0200 | [diff] [blame] | 80 | <dependency> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 81 | <groupId>org.glassfish.jersey.core</groupId> |
| 82 | <artifactId>jersey-common</artifactId> |
| 83 | <version>${project.version}</version> |
| 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>org.glassfish.jersey.media</groupId> |
| 88 | <artifactId>jersey-media-jaxb</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.codehaus.jettison</groupId> |
| 94 | <artifactId>jettison</artifactId> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
Vladimir V. Bychkov | f03e351 | 2022-10-28 12:30:37 +0200 | [diff] [blame] | 98 | <groupId>org.junit.jupiter</groupId> |
| 99 | <artifactId>junit-jupiter</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 100 | <scope>test</scope> |
| 101 | </dependency> |
| 102 | </dependencies> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 103 | </project> |