pom.xml 1.3 KB
Newer Older
1 2 3 4 5
<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
P
pengys5 已提交
6 7
        <artifactId>apm-application-toolkit</artifactId>
        <groupId>org.skywalking</groupId>
wu-sheng's avatar
wu-sheng 已提交
8
        <version>3.2-2017</version>
9 10 11
    </parent>
    <modelVersion>4.0.0</modelVersion>

P
pengys5 已提交
12
    <artifactId>apm-toolkit-opentracing</artifactId>
13 14 15 16 17 18 19 20 21 22 23 24 25

    <dependencies>
        <dependency>
            <groupId>io.opentracing</groupId>
            <artifactId>opentracing-api</artifactId>
            <version>0.20.4</version>
        </dependency>
        <dependency>
            <groupId>io.opentracing</groupId>
            <artifactId>opentracing-noop</artifactId>
            <version>0.20.4</version>
        </dependency>
    </dependencies>
26 27 28 29 30

    <distributionManagement>
        <repository>
            <id>bintray-wu-sheng-sky-walking-repository</id>
            <name>wu-sheng-sky-walking-repository</name>
P
pengys5 已提交
31
            <url>https://api.bintray.com/maven/wu-sheng/skywalking/org.skywalking.apm-toolkit-opentracing/;publish=1
32
            </url>
33 34
        </repository>
    </distributionManagement>
35
</project>