pom.xml 3.1 KB
Newer Older
P
test  
pengys5 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<!--
  ~ Copyright 2017, OpenSkywalking Organization All rights reserved.
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  ~
  ~ Project repository: https://github.com/OpenSkywalking/skywalking
  -->

P
test  
pengys5 已提交
20
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
P
pengys5 已提交
21 22 23
         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 已提交
24
        <module>apm-collector-cluster</module>
P
pengys5 已提交
25 26 27 28 29
        <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 已提交
30 31 32
        <module>apm-collector-agentstream</module>
        <module>apm-collector-ui</module>
        <module>apm-collector-boot</module>
33
        <module>apm-collector-stream</module>
34
        <module>apm-collector-agentserver</module>
35
        <module>apm-collector-agentregister</module>
P
pengys5 已提交
36
        <module>apm-collector-agentjvm</module>
P
pengys5 已提交
37
        <module>apm-collector-remote</module>
38
        <module>apm-collector-cache</module>
P
pengys5 已提交
39 40
    </modules>
    <parent>
P
pengys5 已提交
41 42
        <artifactId>apm</artifactId>
        <groupId>org.skywalking</groupId>
wu-sheng's avatar
wu-sheng 已提交
43
        <version>3.2.3-2017</version>
P
pengys5 已提交
44
    </parent>
P
pengys5 已提交
45
    <artifactId>apm-collector</artifactId>
P
pengys5 已提交
46
    <packaging>pom</packaging>
P
test  
pengys5 已提交
47

P
pengys5 已提交
48 49
    <properties>
    </properties>
P
test  
pengys5 已提交
50

P
pengys5 已提交
51
    <dependencies>
52 53 54 55 56
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.25</version>
        </dependency>
P
pengys5 已提交
57 58 59 60 61 62 63 64
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>log4j-over-slf4j</artifactId>
            <version>1.7.25</version>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
A
ascrutae 已提交
65
            <version>2.9.0</version>
P
pengys5 已提交
66
        </dependency>
67 68 69 70 71
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>22.0</version>
        </dependency>
A
ascrutae 已提交
72 73 74 75 76 77 78 79 80 81 82
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-slf4j-impl</artifactId>
            <version>2.9.0</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.logging.log4j</groupId>
                    <artifactId>log4j-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
P
pengys5 已提交
83
    </dependencies>
P
test  
pengys5 已提交
84
</project>