Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
Jorge Bescos Gascon | 741aad4 | 2021-01-26 14:34:03 +0100 | [diff] [blame] | 4 | Copyright (c) 2017, 2021 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 | e814aca | 2021-09-03 11:08:46 +0000 | [diff] [blame] | 26 | <version>2.36-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 27 | </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> |
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> |
Markus KARG | 092c17e | 2019-09-27 16:09:52 +0200 | [diff] [blame] | 56 | <Export-Package>org.glassfish.jersey.jsonb.*</Export-Package> |
jansupol | d0d0594 | 2019-06-14 13:15:15 +0200 | [diff] [blame] | 57 | <Import-Package>${javax.annotation.osgi.version},*</Import-Package> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 58 | </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> |
jansupol | 7aebbcf | 2018-12-04 14:32:47 +0100 | [diff] [blame] | 74 | <artifactId>jakarta.json</artifactId> |
| 75 | <version>${jsonp.ri.version}</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 76 | </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ó | 7ec7605 | 2018-09-03 11:33:03 +0200 | [diff] [blame] | 82 | <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> |
jansupol | 7aebbcf | 2018-12-04 14:32:47 +0100 | [diff] [blame] | 88 | <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ó | 7ec7605 | 2018-09-03 11:33:03 +0200 | [diff] [blame] | 100 | </exclusions> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 101 | </dependency> |
| 102 | |
| 103 | <dependency> |
jansupol | 7aebbcf | 2018-12-04 14:32:47 +0100 | [diff] [blame] | 104 | <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 Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 113 | </dependency> |
| 114 | |
| 115 | <dependency> |
| 116 | <groupId>junit</groupId> |
| 117 | <artifactId>junit</artifactId> |
| 118 | <scope>test</scope> |
| 119 | </dependency> |
| 120 | </dependencies> |
| 121 | </project> |