pom.xml 881 字节
Newer Older
1 2 3 4 5
<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>
        <artifactId>skywalking</artifactId>
        <groupId>com.a.eye</groupId>
6
        <version>3.0-2017</version>
7 8 9
    </parent>
    <modelVersion>4.0.0</modelVersion>

10
    <artifactId>skywalking-commons</artifactId>
11
    <packaging>pom</packaging>
12

13
    <modules>
14
        <module>skywalking-trace</module>
15
        <module>skywalking-logging</module>
A
ascrutae 已提交
16
        <module>skywalking-util</module>
17
    </modules>
18

19 20 21 22 23
    <name>skywalking-commons</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
A
ascrutae 已提交
24
        <compiler.version>1.6</compiler.version>
25
    </properties>
26
</project>