Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
jersey-bot | 59a5d50 | 2024-01-07 02:21:04 +0000 | [diff] [blame] | 4 | Copyright (c) 2012, 2024 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 Distribution License v. 1.0, which is available at |
| 8 | http://www.eclipse.org/org/documents/edl-v10.php. |
| 9 | |
| 10 | SPDX-License-Identifier: BSD-3-Clause |
| 11 | |
| 12 | --> |
| 13 | |
| 14 | <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"> |
| 15 | <modelVersion>4.0.0</modelVersion> |
| 16 | |
| 17 | <parent> |
| 18 | <groupId>org.glassfish.jersey.examples</groupId> |
| 19 | <artifactId>project</artifactId> |
jersey-bot | 9727e9a | 2024-01-07 02:21:50 +0000 | [diff] [blame] | 20 | <version>4.0.99-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 21 | </parent> |
| 22 | |
| 23 | <artifactId>managed-client</artifactId> |
| 24 | <packaging>jar</packaging> |
| 25 | <name>jersey-examples-managed-client</name> |
| 26 | |
| 27 | <description>Jersey managed client example.</description> |
| 28 | |
| 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>org.glassfish.jersey.containers</groupId> |
| 32 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.glassfish.jersey.inject</groupId> |
| 36 | <artifactId>jersey-hk2</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
Jan Supol | a7421d7 | 2020-10-29 19:40:40 +0100 | [diff] [blame] | 39 | <groupId>jakarta.xml.bind</groupId> |
| 40 | <artifactId>jakarta.xml.bind-api</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>com.sun.xml.bind</groupId> |
| 44 | <artifactId>jaxb-impl</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 47 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 48 | <artifactId>jersey-test-framework-provider-bundle</artifactId> |
| 49 | <type>pom</type> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <!-- uncomment to use Grizzly client --> |
| 53 | <!--dependency> |
| 54 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 55 | <artifactId>jersey-grizzly-connector</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | <scope>test</scope> |
| 58 | </dependency--> |
| 59 | </dependencies> |
| 60 | |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.codehaus.mojo</groupId> |
| 65 | <artifactId>exec-maven-plugin</artifactId> |
| 66 | <configuration> |
| 67 | <mainClass>org.glassfish.jersey.examples.managedclient.App</mainClass> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | </plugins> |
| 71 | </build> |
| 72 | |
| 73 | <profiles> |
| 74 | <profile> |
Jan Supol | df7479f | 2019-02-05 15:43:03 +0100 | [diff] [blame] | 75 | <id>pre-release</id> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 76 | <build> |
| 77 | <plugins> |
| 78 | <plugin> |
| 79 | <groupId>org.apache.maven.plugins</groupId> |
| 80 | <artifactId>maven-assembly-plugin</artifactId> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
| 84 | </profile> |
| 85 | </profiles> |
| 86 | </project> |