pom.xml 3.3 KB
Newer Older
wu-sheng's avatar
wu-sheng 已提交
1 2
<?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"
3 4
         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 已提交
5

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

10
    <modules>
11
        <module>skywalking-commons</module>
12
        <module>skywalking-alarm</module>
13
        <module>skywalking-webui</module>
wu-sheng's avatar
wu-sheng 已提交
14
        <module>skywalking-sniffer</module>
15
        <module>skywalking-storage-center</module>
16
        <module>skywalking-application-toolkit</module>
17 18
    </modules>
    <packaging>pom</packaging>
wu-sheng's avatar
wu-sheng 已提交
19

20 21
    <name>skywalking</name>
    <url>http://maven.apache.org</url>
wu-sheng's avatar
wu-sheng 已提交
22

23 24
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
A
ascrutae 已提交
25
        <compiler.version>1.8</compiler.version>
A
ascrutae 已提交
26
        <powermock.version>1.6.4</powermock.version>
A
ascrutae 已提交
27
        <docker.plugin.version>0.4.13</docker.plugin.version>
28
    </properties>
wu-sheng's avatar
wu-sheng 已提交
29

30 31 32 33 34 35 36 37 38
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
A
ascrutae 已提交
39
            <artifactId>mockito-all</artifactId>
40 41 42
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
A
ascrutae 已提交
43 44 45 46 47 48 49 50 51 52 53 54
        <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>
55
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
56

57 58 59 60 61
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
A
ascrutae 已提交
62 63
                    <source>${compiler.version}</source>
                    <target>${compiler.version}</target>
64 65 66 67 68 69 70 71 72 73 74
                    <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 已提交
75 76 77 78 79 80 81 82
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <version>${docker.plugin.version}</version>
                <configuration>
                    <skipDocker>true</skipDocker>
                </configuration>
            </plugin>
83 84
        </plugins>
    </build>
85 86 87 88 89 90 91 92 93 94 95

    <repositories>
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>DataCarrier</id>
            <name>bintray</name>
            <url>https://jcenter.bintray.com</url>
        </repository>
    </repositories>
A
ascrutae 已提交
96
</project>