pom.xml 1.6 KB
Newer Older
P
test  
pengys5 已提交
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"
P
pengys5 已提交
3 4 5
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <modules>
P
pengys5 已提交
6
        <module>apm-collector-cluster</module>
P
pengys5 已提交
7 8 9 10 11
        <module>apm-collector-core</module>
        <module>apm-collector-queue</module>
        <module>apm-collector-storage</module>
        <module>apm-collector-client</module>
        <module>apm-collector-server</module>
P
pengys5 已提交
12 13 14 15
        <module>apm-collector-agentstream</module>
        <module>apm-collector-ui</module>
        <module>apm-collector-boot</module>
        <module>apm-collector-remote</module>
16
        <module>apm-collector-stream</module>
17
        <module>apm-collector-agentserver</module>
18
        <module>apm-collector-agentregister</module>
P
pengys5 已提交
19
        <module>apm-collector-agentjvm</module>
P
pengys5 已提交
20 21
    </modules>
    <parent>
P
pengys5 已提交
22 23
        <artifactId>apm</artifactId>
        <groupId>org.skywalking</groupId>
wu-sheng's avatar
wu-sheng 已提交
24
        <version>3.2-2017</version>
P
pengys5 已提交
25
    </parent>
P
pengys5 已提交
26
    <artifactId>apm-collector</artifactId>
P
pengys5 已提交
27
    <packaging>pom</packaging>
P
test  
pengys5 已提交
28

P
pengys5 已提交
29 30
    <properties>
    </properties>
P
test  
pengys5 已提交
31

P
pengys5 已提交
32
    <dependencies>
33 34 35 36 37 38 39 40 41 42
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.25</version>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.2.3</version>
        </dependency>
P
pengys5 已提交
43
    </dependencies>
P
test  
pengys5 已提交
44
</project>