Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
| 4 | Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. |
| 5 | |
| 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/maven-v4_0_0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.glassfish.jersey.incubator</groupId> |
| 24 | <artifactId>project</artifactId> |
jersey-bot | e81feb4 | 2019-01-25 16:18:12 +0000 | [diff] [blame^] | 25 | <version>2.29-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <groupId>org.glassfish.jersey.incubator</groupId> |
| 29 | <artifactId>jersey-open-tracing</artifactId> |
| 30 | <packaging>jar</packaging> |
| 31 | |
| 32 | <name>jersey-open-tracing</name> |
| 33 | |
| 34 | <description> |
| 35 | Jersey support for OpenTracing. |
| 36 | </description> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>io.opentracing</groupId> |
| 41 | <artifactId>opentracing-api</artifactId> |
| 42 | </dependency> |
| 43 | |
| 44 | <dependency> |
| 45 | <groupId>io.opentracing</groupId> |
| 46 | <artifactId>opentracing-util</artifactId> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.glassfish.jersey.core</groupId> |
| 51 | <artifactId>jersey-common</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.glassfish.jersey.core</groupId> |
| 57 | <artifactId>jersey-server</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>junit</groupId> |
| 64 | <artifactId>junit</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 70 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | |
| 76 | <build> |
| 77 | <plugins> |
| 78 | <plugin> |
| 79 | <groupId>com.sun.istack</groupId> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 80 | <artifactId>istack-commons-maven-plugin</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 81 | <inherited>true</inherited> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.codehaus.mojo</groupId> |
| 85 | <artifactId>build-helper-maven-plugin</artifactId> |
| 86 | <inherited>true</inherited> |
| 87 | </plugin> |
| 88 | <plugin> |
| 89 | <groupId>org.apache.felix</groupId> |
| 90 | <artifactId>maven-bundle-plugin</artifactId> |
| 91 | <inherited>true</inherited> |
| 92 | </plugin> |
| 93 | </plugins> |
| 94 | </build> |
| 95 | </project> |