Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | |
jansupol | d0d0594 | 2019-06-14 13:15:15 +0200 | [diff] [blame] | 4 | Copyright (c) 2014, 2019 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.ext</groupId> |
| 25 | <artifactId>project</artifactId> |
jersey-bot | fb1f60b | 2019-09-11 12:03:03 +0000 | [diff] [blame^] | 26 | <version>2.29.1</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>jersey-metainf-services</artifactId> |
| 30 | <name>jersey-ext-metainf-services</name> |
| 31 | |
| 32 | <description> |
| 33 | Jersey extension module enabling automatic registration of JAX-RS providers (MBW/MBR/EM) via META-INF/services mechanism. |
| 34 | </description> |
| 35 | |
| 36 | <build> |
| 37 | <pluginManagement> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-javadoc-plugin</artifactId> |
| 42 | <configuration> |
| 43 | <!-- |
| 44 | Excluding only *.tests.* packages for this module. At least one class has to exist in non-excluded |
| 45 | packages to generate proper -javadoc.jar file. See https://jira.codehaus.org/browse/MJAVADOC-329 |
| 46 | --> |
| 47 | <excludePackageNames>*.tests.*</excludePackageNames> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </pluginManagement> |
| 52 | <plugins> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-compiler-plugin</artifactId> |
| 56 | <inherited>false</inherited> |
| 57 | <configuration> |
| 58 | <source>${java.version}</source> |
| 59 | <target>${java.version}</target> |
| 60 | <compilerArguments> |
| 61 | <!-- Do not warn about using sun.misc.Unsafe --> |
| 62 | <XDignore.symbol.file /> |
| 63 | </compilerArguments> |
| 64 | <showWarnings>false</showWarnings> |
| 65 | <fork>false</fork> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>com.sun.istack</groupId> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 70 | <artifactId>istack-commons-maven-plugin</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 71 | <inherited>true</inherited> |
| 72 | </plugin> |
| 73 | <plugin> |
| 74 | <groupId>org.codehaus.mojo</groupId> |
| 75 | <artifactId>build-helper-maven-plugin</artifactId> |
| 76 | <inherited>true</inherited> |
| 77 | </plugin> |
| 78 | <plugin> |
| 79 | <groupId>org.apache.felix</groupId> |
| 80 | <artifactId>maven-bundle-plugin</artifactId> |
| 81 | <inherited>true</inherited> |
| 82 | <extensions>true</extensions> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 83 | <configuration> |
| 84 | <instructions> |
| 85 | <Import-Package> |
jansupol | d0d0594 | 2019-06-14 13:15:15 +0200 | [diff] [blame] | 86 | ${javax.annotation.osgi.version}, |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 87 | * |
| 88 | </Import-Package> |
| 89 | <unpackBundle>true</unpackBundle> |
| 90 | </instructions> |
| 91 | </configuration> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 92 | </plugin> |
| 93 | </plugins> |
| 94 | </build> |
| 95 | |
| 96 | <dependencies> |
| 97 | <dependency> |
| 98 | <groupId>org.glassfish.jersey.core</groupId> |
| 99 | <artifactId>jersey-common</artifactId> |
| 100 | <version>${project.version}</version> |
| 101 | </dependency> |
| 102 | |
| 103 | <dependency> |
| 104 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 105 | <artifactId>jersey-test-framework-provider-bundle</artifactId> |
| 106 | <version>${project.version}</version> |
| 107 | <type>pom</type> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | </dependencies> |
| 111 | </project> |