pom.xml 1.5 KB
Newer Older
A
ascrutae 已提交
1 2 3 4 5 6
<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>
        <artifactId>skywalking-application-toolkit</artifactId>
        <groupId>com.a.eye</groupId>
wu-sheng's avatar
wu-sheng 已提交
7
        <version>2.3-2017</version>
A
ascrutae 已提交
8 9 10 11 12 13 14
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>skywalking-toolkit-trace-context</artifactId>
    <packaging>jar</packaging>

    <url>http://maven.apache.org</url>
15

wu-sheng's avatar
wu-sheng 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
    <build>
        <plugins>
            <plugin>
                <!-- 源码插件 -->
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <!-- 发布时自动将源码同时发布的配置 -->
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
                <version>2.4</version>
            </plugin>
        </plugins>
    </build>

36 37 38 39 40 41 42
    <distributionManagement>
        <repository>
            <id>bintray-wu-sheng-sky-walking-repository</id>
            <name>wu-sheng-sky-walking-repository</name>
            <url>https://api.bintray.com/maven/wu-sheng/skywalking/com.a.eye.skywalking-toolkit-trace-context/;publish=1</url>
        </repository>
    </distributionManagement>
A
ascrutae 已提交
43
</project>