blob: 325c8216da375d32f180dd5fb231eb7fed51fa92 [file] [log] [blame]
Jan Supol12a05732018-04-25 17:50:03 +02001<?xml version="1.0"?>
2<!--
3
jansupold0d05942019-06-14 13:15:15 +02004 Copyright (c) 2014, 2019 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.ext</groupId>
25 <artifactId>project</artifactId>
jersey-botfb1f60b2019-09-11 12:03:03 +000026 <version>2.29.1</version>
Jan Supol12a05732018-04-25 17:50:03 +020027 </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>
jansupol100db132018-12-10 15:14:46 +010070 <artifactId>istack-commons-maven-plugin</artifactId>
Jan Supol12a05732018-04-25 17:50:03 +020071 <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>
jansupol100db132018-12-10 15:14:46 +010083 <configuration>
84 <instructions>
85 <Import-Package>
jansupold0d05942019-06-14 13:15:15 +020086 ${javax.annotation.osgi.version},
jansupol100db132018-12-10 15:14:46 +010087 *
88 </Import-Package>
89 <unpackBundle>true</unpackBundle>
90 </instructions>
91 </configuration>
Jan Supol12a05732018-04-25 17:50:03 +020092 </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>