pom.xml 5.0 KB
Newer Older
wu-sheng's avatar
wu-sheng 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
A
ascrutae 已提交
2 3
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 5
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
wu-sheng's avatar
wu-sheng 已提交
6

7 8
    <groupId>com.a.eye</groupId>
    <artifactId>skywalking</artifactId>
9
    <version>2.1-2017</version>
wu-sheng's avatar
wu-sheng 已提交
10

wu-sheng's avatar
wu-sheng 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    <licenses>
        <license>
            <name>GNU GENERAL PUBLIC LICENSE V3</name>
            <url>https://github.com/wu-sheng/sky-walking/blob/master/LICENSE</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Wu Sheng</name>
            <email>wu.sheng@foxmail.com</email>
            <url>https://wu-sheng.github.io/me/</url>
        </developer>
        <developer>
            <name>Zhang Xin</name>
            <url>https://github.com/ascrutae</url>
        </developer>
    </developers>

30
    <modules>
31
        <module>skywalking-commons</module>
32
        <module>skywalking-alarm</module>
33
        <module>skywalking-webui</module>
wu-sheng's avatar
wu-sheng 已提交
34
        <module>skywalking-sniffer</module>
35
        <module>skywalking-storage-center</module>
36
        <module>skywalking-application-toolkit</module>
37 38
    </modules>
    <packaging>pom</packaging>
wu-sheng's avatar
wu-sheng 已提交
39

40
    <name>skywalking</name>
wu-sheng's avatar
wu-sheng 已提交
41 42 43 44 45 46 47 48 49 50 51
    <url>https://github.com/wu-sheng/sky-walking</url>

    <issueManagement>
        <system>GitHub</system>
        <url>https://github.com/wu-sheng/sky-walking/issues</url>
    </issueManagement>

    <ciManagement>
        <system>travis</system>
        <url>https://travis-ci.org/wu-sheng/sky-walking</url>
    </ciManagement>
wu-sheng's avatar
wu-sheng 已提交
52

53 54
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
A
ascrutae 已提交
55
        <compiler.version>1.8</compiler.version>
A
ascrutae 已提交
56
        <powermock.version>1.6.4</powermock.version>
A
ascrutae 已提交
57
        <docker.plugin.version>0.4.13</docker.plugin.version>
A
ascrutae 已提交
58
        <skywalking.version>2.1-2017</skywalking.version>
59
    </properties>
wu-sheng's avatar
wu-sheng 已提交
60

61 62 63 64 65 66 67 68 69
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
A
ascrutae 已提交
70
            <artifactId>mockito-all</artifactId>
71 72 73
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
A
ascrutae 已提交
74 75 76 77 78 79 80 81 82 83 84 85
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
86
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
87

88 89 90 91 92
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
A
ascrutae 已提交
93 94
                    <source>${compiler.version}</source>
                    <target>${compiler.version}</target>
95 96 97 98 99 100 101 102 103 104 105
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.4.3</version>
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
A
ascrutae 已提交
106 107 108 109 110 111 112 113
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <version>${docker.plugin.version}</version>
                <configuration>
                    <skipDocker>true</skipDocker>
                </configuration>
            </plugin>
A
ascrutae 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
            <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>
A
ascrutae 已提交
129 130 131 132 133
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>versions-maven-plugin</artifactId>
                <version>2.3</version>
            </plugin>
134 135
        </plugins>
    </build>
136 137 138 139 140 141

    <repositories>
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
wu-sheng's avatar
wu-sheng 已提交
142
            <id>bintray</id>
143 144 145 146
            <name>bintray</name>
            <url>https://jcenter.bintray.com</url>
        </repository>
    </repositories>
wu-sheng's avatar
wu-sheng 已提交
147 148


A
ascrutae 已提交
149
</project>