pom.xml 1.8 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.3-2017</version>
9 10 11
    </parent>
    <modelVersion>4.0.0</modelVersion>

P
pengys5 已提交
12
    <artifactId>apm-toolkit-logback-1.x</artifactId>
13 14 15 16 17 18

    <dependencies>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.1.7</version>
19
            <scope>provided</scope>
20 21
        </dependency>
    </dependencies>
22

wu-sheng's avatar
wu-sheng 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

    <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>

44 45 46 47
    <distributionManagement>
        <repository>
            <id>bintray-wu-sheng-sky-walking-repository</id>
            <name>wu-sheng-sky-walking-repository</name>
P
pengys5 已提交
48
            <url>https://api.bintray.com/maven/wu-sheng/skywalking/org.skywalking.apm-toolkit-logback-1.x/;publish=1
49
            </url>
50 51
        </repository>
    </distributionManagement>
52
</project>