pom.xml 1.0 KB
Newer Older
1 2 3 4 5
<?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"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
P
pengys5 已提交
6 7
        <artifactId>apm</artifactId>
        <groupId>org.skywalking</groupId>
8
        <version>3.1-2017</version>
9 10 11
    </parent>
    <modelVersion>4.0.0</modelVersion>

P
pengys5 已提交
12
    <artifactId>apm-sniffer</artifactId>
13 14 15
    <packaging>pom</packaging>

    <modules>
P
pengys5 已提交
16
        <module>apm-agent</module>
17
        <module>apm-agent-core</module>
P
pengys5 已提交
18 19 20
        <module>apm-sdk-plugin</module>
        <module>apm-toolkit-activation</module>
        <module>apm-sniffer-mock</module>
21 22
    </modules>

wu-sheng's avatar
wu-sheng 已提交
23 24 25 26
    <properties>
        <compiler.version>1.6</compiler.version>
    </properties>

A
ascrutae 已提交
27 28
    <dependencies>
        <dependency>
P
pengys5 已提交
29 30
            <groupId>org.skywalking</groupId>
            <artifactId>apm-util</artifactId>
31
            <version>3.1-2017</version>
A
ascrutae 已提交
32 33
        </dependency>
    </dependencies>
34
</project>