blob: ba7ada6bde08d3bc444bbc4061ecf7b69d857959 [file] [log] [blame]
Jan Supol12a05732018-04-25 17:50:03 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
Jorge Bescos Gascon741aad42021-01-26 14:34:03 +01004 Copyright (c) 2017, 2021 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-bote814aca2021-09-03 11:08:46 +000026 <version>2.36-SNAPSHOT</version>
Jan Supol12a05732018-04-25 17:50:03 +020027 </parent>
28
29 <artifactId>jersey-media-json-binding</artifactId>
30 <packaging>jar</packaging>
31 <name>jersey-media-json-binding</name>
32
33 <description>
34 Jersey JSON-B 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>
Markus KARG092c17e2019-09-27 16:09:52 +020056 <Export-Package>org.glassfish.jersey.jsonb.*</Export-Package>
jansupold0d05942019-06-14 13:15:15 +020057 <Import-Package>${javax.annotation.osgi.version},*</Import-Package>
Jan Supol12a05732018-04-25 17:50:03 +020058 </instructions>
59 <unpackBundle>true</unpackBundle>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64
65 <dependencies>
66 <dependency>
67 <groupId>org.glassfish.jersey.core</groupId>
68 <artifactId>jersey-common</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71
72 <dependency>
73 <groupId>org.glassfish</groupId>
jansupol7aebbcf2018-12-04 14:32:47 +010074 <artifactId>jakarta.json</artifactId>
75 <version>${jsonp.ri.version}</version>
Jan Supol12a05732018-04-25 17:50:03 +020076 </dependency>
77
78 <!-- TODO - remove snapshot dependencies (will need yasson & API release, as there only is 2 month old M1 version -->
79 <dependency>
80 <groupId>org.eclipse</groupId>
81 <artifactId>yasson</artifactId>
Máté Szabó7ec76052018-09-03 11:33:03 +020082 <exclusions>
83 <!-- Remove ancient javax.el that causes problems with Hibernate -->
84 <exclusion>
85 <groupId>javax.el</groupId>
86 <artifactId>el-api</artifactId>
87 </exclusion>
jansupol7aebbcf2018-12-04 14:32:47 +010088 <exclusion>
89 <groupId>jakarta.el</groupId>
90 <artifactId>jakarta.el-api</artifactId>
91 </exclusion>
92 <exclusion>
93 <groupId>javax.json.bind</groupId>
94 <artifactId>javax.json.bind-api</artifactId>
95 </exclusion>
96 <exclusion>
97 <groupId>javax.json</groupId>
98 <artifactId>javax.json-api</artifactId>
99 </exclusion>
Máté Szabó7ec76052018-09-03 11:33:03 +0200100 </exclusions>
Jan Supol12a05732018-04-25 17:50:03 +0200101 </dependency>
102
103 <dependency>
jansupol7aebbcf2018-12-04 14:32:47 +0100104 <groupId>jakarta.json.bind</groupId>
105 <artifactId>jakarta.json.bind-api</artifactId>
106 <version>${jsonb.api.version}</version>
107 </dependency>
108
109 <dependency>
110 <groupId>jakarta.json</groupId>
111 <artifactId>jakarta.json-api</artifactId>
112 <version>${jsonp.ri.version}</version>
Jan Supol12a05732018-04-25 17:50:03 +0200113 </dependency>
114
115 <dependency>
116 <groupId>junit</groupId>
117 <artifactId>junit</artifactId>
118 <scope>test</scope>
119 </dependency>
120 </dependencies>
121</project>