pom.xml 3.3 KB
Newer Older
P
test  
pengys5 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
wu-sheng's avatar
wu-sheng 已提交
3 4 5 6 7 8
  ~ Licensed to the Apache Software Foundation (ASF) under one or more
  ~ contributor license agreements.  See the NOTICE file distributed with
  ~ this work for additional information regarding copyright ownership.
  ~ The ASF licenses this file to You 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
9 10 11 12 13 14 15 16 17 18 19
  ~
  ~     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.
  ~
  -->

20 21 22
<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">
P
pengys5 已提交
23
    <parent>
P
pengys5 已提交
24 25
        <artifactId>apm</artifactId>
        <groupId>org.skywalking</groupId>
26
        <version>5.0-2018-preview</version>
P
pengys5 已提交
27
    </parent>
28 29
    <modelVersion>4.0.0</modelVersion>

P
pengys5 已提交
30
    <artifactId>apm-collector</artifactId>
31

P
pengys5 已提交
32
    <packaging>pom</packaging>
33 34
    <modules>
        <module>apm-collector-boot</module>
35 36 37 38 39 40 41
        <module>apm-collector-ui</module>
        <module>apm-collector-core</module>
        <module>apm-collector-component</module>
        <module>apm-collector-cluster</module>
        <module>apm-collector-cache</module>
        <module>apm-collector-storage</module>
        <module>apm-collector-naming</module>
42 43
        <module>apm-collector-grpc-manager</module>
        <module>apm-collector-jetty-manager</module>
44
        <module>apm-collector-remote</module>
P
peng-yongsheng 已提交
45 46
        <module>apm-collector-stream</module>
        <module>apm-collector-queue</module>
47
        <module>apm-collector-instrument</module>
48
        <module>apm-collector-baseline</module>
49 50 51
        <module>apm-collector-agent-grpc</module>
        <module>apm-collector-agent-jetty</module>
        <module>apm-collector-agent-stream</module>
P
peng-yongsheng 已提交
52
        <module>apm-collector-alerting</module>
P
peng-yongsheng 已提交
53
        <module>apm-collector-configuration</module>
54
    </modules>
P
test  
pengys5 已提交
55

P
pengys5 已提交
56
    <dependencies>
57 58 59 60 61
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.25</version>
        </dependency>
P
pengys5 已提交
62 63 64 65 66 67 68 69
        <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 已提交
70
            <version>2.9.0</version>
P
pengys5 已提交
71
        </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>
84
</project>