pom.xml 2.4 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>
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>
26
    </properties>
wu-sheng's avatar
wu-sheng 已提交
27

28 29 30 31 32 33 34 35 36 37 38 39 40 41
    <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 已提交
42

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

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