483 lines
21 KiB
Plaintext
483 lines
21 KiB
Plaintext
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!--
|
||
|
|
||
|
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
||
|
|
||
|
Copyright (c) 2013-2018 Oracle and/or its affiliates. All rights reserved.
|
||
|
|
||
|
The contents of this file are subject to the terms of either the GNU
|
||
|
General Public License Version 2 only ("GPL") or the Common Development
|
||
|
and Distribution License("CDDL") (collectively, the "License"). You
|
||
|
may not use this file except in compliance with the License. You can
|
||
|
obtain a copy of the License at
|
||
|
https://oss.oracle.com/licenses/CDDL+GPL-1.1
|
||
|
or LICENSE.txt. See the License for the specific
|
||
|
language governing permissions and limitations under the License.
|
||
|
|
||
|
When distributing the software, include this License Header Notice in each
|
||
|
file and include the License file at LICENSE.txt.
|
||
|
|
||
|
GPL Classpath Exception:
|
||
|
Oracle designates this particular file as subject to the "Classpath"
|
||
|
exception as provided by Oracle in the GPL Version 2 section of the License
|
||
|
file that accompanied this code.
|
||
|
|
||
|
Modifications:
|
||
|
If applicable, add the following below the License Header, with the fields
|
||
|
enclosed by brackets [] replaced by your own identifying information:
|
||
|
"Portions Copyright [year] [name of copyright owner]"
|
||
|
|
||
|
Contributor(s):
|
||
|
If you wish your version of this file to be governed by only the CDDL or
|
||
|
only the GPL Version 2, indicate your decision by adding "[Contributor]
|
||
|
elects to include this software in this distribution under the [CDDL or GPL
|
||
|
Version 2] license." If you don't indicate a single choice of license, a
|
||
|
recipient has the option to distribute your version of this file under
|
||
|
either the CDDL, the GPL Version 2 or to extend the choice of license to
|
||
|
its licensees as provided above. However, if you add GPL Version 2 code
|
||
|
and therefore, elected the GPL Version 2 license, then the option applies
|
||
|
only if the new code is made subject to such option by the copyright
|
||
|
holder.
|
||
|
|
||
|
-->
|
||
|
|
||
|
<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/maven-v4_0_0.xsd">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>net.java</groupId>
|
||
|
<artifactId>jvnet-parent</artifactId>
|
||
|
<version>4</version>
|
||
|
<relativePath />
|
||
|
</parent>
|
||
|
|
||
|
<groupId>org.glassfish.jersey</groupId>
|
||
|
<artifactId>jersey-bom</artifactId>
|
||
|
<version>2.27</version>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>jersey-bom</name>
|
||
|
|
||
|
<description>Jersey Bill of Materials (BOM)</description>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||
|
<artifactId>jersey-common</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||
|
<artifactId>jersey-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||
|
<artifactId>jersey-server</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.bundles</groupId>
|
||
|
<artifactId>jaxrs-ri</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||
|
<artifactId>jersey-apache-connector</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||
|
<artifactId>jersey-grizzly-connector</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||
|
<artifactId>jersey-jetty-connector</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||
|
<artifactId>jersey-jdk-connector</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||
|
<artifactId>jersey-netty-connector</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-jetty-http</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-grizzly2-http</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-grizzly2-servlet</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-jetty-servlet</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-jdk-http</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-netty-http</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-servlet</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-servlet-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||
|
<artifactId>jersey-container-simple-http</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.containers.glassfish</groupId>
|
||
|
<artifactId>jersey-gf-ejb</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-bean-validation</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-entity-filtering</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-metainf-services</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-mvc</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-mvc-bean-validation</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-mvc-freemarker</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-mvc-jsp</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-mvc-mustache</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-proxy-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-servlet-portability</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-spring4</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-declarative-linking</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||
|
<artifactId>jersey-wadl-doclet</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||
|
<artifactId>jersey-weld2-se</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||
|
<artifactId>jersey-cdi1x</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||
|
<artifactId>jersey-cdi1x-transaction</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||
|
<artifactId>jersey-cdi1x-validation</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||
|
<artifactId>jersey-cdi1x-servlet</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||
|
<artifactId>jersey-cdi1x-ban-custom-hk2-binding</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.rx</groupId>
|
||
|
<artifactId>jersey-rx-client-guava</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.rx</groupId>
|
||
|
<artifactId>jersey-rx-client-rxjava</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.ext.rx</groupId>
|
||
|
<artifactId>jersey-rx-client-rxjava2</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-jaxb</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-json-jackson</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-json-jackson1</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-json-jettison</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-json-processing</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-json-binding</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-kryo</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-moxy</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-multipart</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||
|
<artifactId>jersey-media-sse</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||
|
<artifactId>oauth1-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||
|
<artifactId>oauth1-server</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||
|
<artifactId>oauth1-signature</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||
|
<artifactId>oauth2-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.inject</groupId>
|
||
|
<artifactId>jersey-hk2</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.inject</groupId>
|
||
|
<artifactId>jersey-cdi2-se</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework</groupId>
|
||
|
<artifactId>jersey-test-framework-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-bundle</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<type>pom</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-external</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-inmemory</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-jdk-http</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-simple</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||
|
<artifactId>jersey-test-framework-provider-jetty</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.jersey.test-framework</groupId>
|
||
|
<artifactId>jersey-test-framework-util</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.glassfish.copyright</groupId>
|
||
|
<artifactId>glassfish-copyright-maven-plugin</artifactId>
|
||
|
<version>1.28</version>
|
||
|
<configuration>
|
||
|
<excludeFile>etc/config/copyright-exclude</excludeFile>
|
||
|
<!--svn|mercurial|git - defaults to svn-->
|
||
|
<scm>git</scm>
|
||
|
<!-- turn on/off debugging -->
|
||
|
<debug>false</debug>
|
||
|
<!-- skip files not under SCM-->
|
||
|
<scmOnly>true</scmOnly>
|
||
|
<!-- turn off warnings -->
|
||
|
<warn>true</warn>
|
||
|
<!-- for use with repair -->
|
||
|
<update>false</update>
|
||
|
<!-- check that year is correct -->
|
||
|
<ignoreYear>false</ignoreYear>
|
||
|
<templateFile>etc/config/copyright.txt</templateFile>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
</build>
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>project-info</id>
|
||
|
<activation>
|
||
|
<activeByDefault>false</activeByDefault>
|
||
|
</activation>
|
||
|
|
||
|
<!-- placeholder required for site:stage -->
|
||
|
<distributionManagement>
|
||
|
<site>
|
||
|
<id>localhost</id>
|
||
|
<url>http://localhost</url>
|
||
|
</site>
|
||
|
</distributionManagement>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>release</id>
|
||
|
<activation>
|
||
|
<activeByDefault>false</activeByDefault>
|
||
|
</activation>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.sonatype.plugins</groupId>
|
||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
|
<version>1.6.7</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>default-deploy</id>
|
||
|
<phase>deploy</phase>
|
||
|
<goals>
|
||
|
<goal>deploy</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<serverId>jvnet-nexus-staging</serverId>
|
||
|
<nexusUrl>https://maven.java.net/</nexusUrl>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
<scm>
|
||
|
<tag>2.27</tag>
|
||
|
</scm>
|
||
|
</project>
|