blob: 4e65202e89408abfa176317e92a19fc002369492 [file] [log] [blame]
Jan Supol12a05732018-04-25 17:50:03 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
jersey-bot59a5d502024-01-07 02:21:04 +00004 Copyright (c) 2012, 2024 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 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-bot9727e9a2024-01-07 02:21:50 +000020 <version>4.0.99-SNAPSHOT</version>
Jan Supol12a05732018-04-25 17:50:03 +020021 </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 Supola7421d72020-10-29 19:40:40 +010039 <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 Supol12a05732018-04-25 17:50:03 +020047 <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 Supoldf7479f2019-02-05 15:43:03 +010075 <id>pre-release</id>
Jan Supol12a05732018-04-25 17:50:03 +020076 <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>