blob: 217010f646ab63246a13d53435bec9f1fc5e8b50 [file] [log] [blame]
Jan Supol12a05732018-04-25 17:50:03 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
jersey-bot59a5d502024-01-07 02:21:04 +00004 Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
Jan Supol12a05732018-04-25 17:50:03 +02005
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-bot9727e9a2024-01-07 02:21:50 +000026 <version>4.0.99-SNAPSHOT</version>
Jan Supol12a05732018-04-25 17:50:03 +020027 </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>
jansupol100db132018-12-10 15:14:46 +010041 <artifactId>istack-commons-maven-plugin</artifactId>
Jan Supol12a05732018-04-25 17:50:03 +020042 <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 Tijms0f8d7532021-12-13 11:50:18 +010056 <!-- 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 Supol12a05732018-04-25 17:50:03 +020062 <Export-Package>org.glassfish.jersey.jettison.*</Export-Package>
Arjan Tijms0f8d7532021-12-13 11:50:18 +010063
Jan Supol12a05732018-04-25 17:50:03 +020064 <!--<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 Nesen0c6b2c52020-04-17 14:37:45 +020076 <groupId>jakarta.xml.bind</groupId>
77 <artifactId>jakarta.xml.bind-api</artifactId>
78 </dependency>
Jan Supol767311d2020-10-05 10:50:36 +020079
Maxim Nesen0c6b2c52020-04-17 14:37:45 +020080 <dependency>
Jan Supol12a05732018-04-25 17:50:03 +020081 <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. Bychkovf03e3512022-10-28 12:30:37 +020098 <groupId>org.junit.jupiter</groupId>
99 <artifactId>junit-jupiter</artifactId>
Jan Supol12a05732018-04-25 17:50:03 +0200100 <scope>test</scope>
101 </dependency>
102 </dependencies>
Jan Supol12a05732018-04-25 17:50:03 +0200103</project>