|  | <?xml version="1.0" encoding="UTF-8"?> | 
|  | <!-- | 
|  |  | 
|  | Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved. | 
|  |  | 
|  | This program and the accompanying materials are made available under the | 
|  | terms of the Eclipse Public License v. 2.0, which is available at | 
|  | http://www.eclipse.org/legal/epl-2.0. | 
|  |  | 
|  | This Source Code may also be made available under the following Secondary | 
|  | Licenses when the conditions for such availability set forth in the | 
|  | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | 
|  | version 2 with the GNU Classpath Exception, which is available at | 
|  | https://www.gnu.org/software/classpath/license.html. | 
|  |  | 
|  | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | 
|  |  | 
|  | --> | 
|  |  | 
|  | <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"> | 
|  | <modelVersion>4.0.0</modelVersion> | 
|  | <parent> | 
|  | <groupId>org.glassfish.jersey.bundles</groupId> | 
|  | <artifactId>project</artifactId> | 
|  | <version>2.44</version> | 
|  | </parent> | 
|  |  | 
|  | <artifactId>apidocs</artifactId> | 
|  | <name>jersey-bundles-apidocs</name> | 
|  | <packaging>jar</packaging> | 
|  |  | 
|  | <dependencies> | 
|  | <!-- CORE --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.core</groupId> | 
|  | <artifactId>jersey-server</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <exclusions> | 
|  | <exclusion> | 
|  | <groupId>jakarta.activation</groupId> | 
|  | <artifactId>jakarta.activation-api</artifactId> | 
|  | </exclusion> | 
|  | </exclusions> | 
|  | </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-common</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- need to explicitly include the osgi dependency here | 
|  | as it is scoped as provided in the jersey-common module --> | 
|  | <dependency> | 
|  | <groupId>org.osgi</groupId> | 
|  | <artifactId>org.osgi.core</artifactId> | 
|  | </dependency> | 
|  | <!-- CONNECTORS --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-apache-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <exclusions> | 
|  | <exclusion> | 
|  | <groupId>commons-codec</groupId> | 
|  | <artifactId>commons-codec</artifactId> | 
|  | </exclusion> | 
|  | </exclusions> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-apache5-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-grizzly-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <exclusions> | 
|  | <exclusion> | 
|  | <groupId>org.slf4j</groupId> | 
|  | <artifactId>slf4j-api</artifactId> | 
|  | </exclusion> | 
|  | </exclusions> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-helidon-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-jetty-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-jetty-http2-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-netty-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- CONTAINERS --> | 
|  | <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> | 
|  | <!-- need to explicitly include the servlet dependency here | 
|  | as it is scoped as provided in the jersey-servet modules --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish</groupId> | 
|  | <artifactId>javax.servlet</artifactId> | 
|  | <version>3.1.1</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</groupId> | 
|  | <artifactId>jersey-container-jdk-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> | 
|  | <!-- MEDIA --> | 
|  | <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-binding</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-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-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> | 
|  | <!-- kryo --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.media</groupId> | 
|  | <artifactId>jersey-media-kryo</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- INJECT --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.inject</groupId> | 
|  | <artifactId>jersey-cdi2-se</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.inject</groupId> | 
|  | <artifactId>jersey-hk2</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- EXT --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.ext.cdi</groupId> | 
|  | <artifactId>jersey-cdi1x</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-micrometer</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.ext.microprofile</groupId> | 
|  | <artifactId>jersey-mp-config</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.ext.microprofile</groupId> | 
|  | <artifactId>jersey-mp-rest-client</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.ext</groupId> | 
|  | <artifactId>jersey-wadl-doclet</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- incubator --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.incubator</groupId> | 
|  | <artifactId>jersey-open-tracing</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- security --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.security</groupId> | 
|  | <artifactId>oauth1-signature</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | </dependencies> | 
|  | <profiles> | 
|  | <profile> | 
|  | <id>jetty2x</id> | 
|  | <activation> | 
|  | <activeByDefault>false</activeByDefault> | 
|  | </activation> | 
|  | <dependencies> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.ext.microprofile</groupId> | 
|  | <artifactId>jersey-mp-rest-client</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- media --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.media</groupId> | 
|  | <artifactId>jersey-media-json-jackson1</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | <!-- connectors --> | 
|  | <dependency> | 
|  | <groupId>org.glassfish.jersey.connectors</groupId> | 
|  | <artifactId>jersey-helidon-connector</artifactId> | 
|  | <version>${project.version}</version> | 
|  | </dependency> | 
|  | </dependencies> | 
|  | </profile> | 
|  | </profiles> | 
|  | <build> | 
|  | <plugins> | 
|  | <plugin> | 
|  | <artifactId>maven-javadoc-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>javadoc-jar</id> | 
|  | <!--phase>package</phase--> | 
|  | <goals> | 
|  | <goal>jar</goal> | 
|  | </goals> | 
|  | <configuration> | 
|  | <includeDependencySources>true</includeDependencySources> | 
|  | <sourceFileExcludes> | 
|  | <fileExclude>META-INF/versions/12/org/glassfish/jersey/wadl/doclet/*.java</fileExclude> | 
|  | <fileExclude>org/glassfish/jersey/helidon/connector/*.java</fileExclude> | 
|  | </sourceFileExcludes> | 
|  | <dependencySourceIncludes> | 
|  | <dependencySourceInclude>org.glassfish.jersey.*:*</dependencySourceInclude> | 
|  | </dependencySourceIncludes> | 
|  | <excludePackageNames>*.innate:*.innate.*</excludePackageNames> | 
|  | </configuration> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.codehaus.mojo</groupId> | 
|  | <artifactId>build-helper-maven-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>exclude-jar</id> | 
|  | <goals> | 
|  | <goal>remove-project-artifact</goal> | 
|  | </goals> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | </plugins> | 
|  | </build> | 
|  | </project> |