pom.xml 2.5 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>
wu-sheng's avatar
wu-sheng 已提交
8
    <version>2.0-2016</version>
wu-sheng's avatar
wu-sheng 已提交
9

10
    <modules>
11
        <module>skywalking-commons</module>
12
        <module>skywalking-alarm</module>
A
ascrutae 已提交
13
        <!--<module>skywalking-webui</module>-->
wu-sheng's avatar
wu-sheng 已提交
14
        <!--<module>skywalking-sniffer</module>-->
15
        <module>skywalking-storage-center</module>
16 17
        <module>skywalking-opentracing-kit</module>

18 19 20 21
        <module>samples/skywalking-auth</module>
        <module>samples/skywalking-example</module>
    </modules>
    <packaging>pom</packaging>
wu-sheng's avatar
wu-sheng 已提交
22

23 24
    <name>skywalking</name>
    <url>http://maven.apache.org</url>
wu-sheng's avatar
wu-sheng 已提交
25

26 27
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
A
ascrutae 已提交
28
        <compiler.version>1.8</compiler.version>
29
    </properties>
wu-sheng's avatar
wu-sheng 已提交
30

31 32 33 34 35 36 37 38 39 40 41 42 43 44
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
45

46 47 48 49 50
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
A
ascrutae 已提交
51 52
                    <source>${compiler.version}</source>
                    <target>${compiler.version}</target>
53 54 55 56 57 58 59 60 61 62 63 64 65
                    <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>
        </plugins>
    </build>
66 67 68 69 70 71 72 73 74 75 76

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