pom.xml 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?xml version="1.0" encoding="UTF-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
  ~
  ~     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
<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">
21 22 23
    <parent>
        <artifactId>apm</artifactId>
        <groupId>org.apache.skywalking</groupId>
24
        <version>8.8.1</version>
25 26 27 28 29 30
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>oap-server</artifactId>
    <packaging>pom</packaging>
    <modules>
31
        <module>server-core</module>
32
        <module>analyzer</module>
33
        <module>server-receiver-plugin</module>
34
        <module>server-cluster-plugin</module>
35
        <module>server-storage-plugin</module>
36 37
        <module>server-library</module>
        <module>server-starter</module>
38
        <module>server-query-plugin</module>
wu-sheng's avatar
wu-sheng 已提交
39
        <module>server-alarm-plugin</module>
40
        <module>server-testing</module>
wu-sheng's avatar
wu-sheng 已提交
41
        <module>oal-rt</module>
wu-sheng's avatar
wu-sheng 已提交
42
        <module>server-telemetry</module>
wu-sheng's avatar
wu-sheng 已提交
43
        <module>oal-grammar</module>
wu-sheng's avatar
wu-sheng 已提交
44
        <module>exporter</module>
45
        <module>server-configuration</module>
46
        <module>server-tools</module>
wu-sheng's avatar
wu-sheng 已提交
47
        <module>server-fetcher-plugin</module>
G
Gao Hongtao 已提交
48
        <module>server-health-checker</module>
49 50 51 52
    </modules>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
53

54
        <maven-docker-plugin.version>0.30.0</maven-docker-plugin.version>
55 56
        <kafka-clients.version>2.4.1</kafka-clients.version>
        <spring-kafka-test.version>2.4.6.RELEASE</spring-kafka-test.version>
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>log4j-over-slf4j</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-slf4j-impl</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.logging.log4j</groupId>
                    <artifactId>log4j-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
86 87 88 89
        <dependency>
            <groupId>org.testcontainers</groupId>
            <artifactId>testcontainers</artifactId>
        </dependency>
90 91 92 93
    </dependencies>

    <dependencyManagement>
        <dependencies>
wu-sheng's avatar
wu-sheng 已提交
94 95 96 97 98
            <dependency>
                <groupId>org.apache.skywalking</groupId>
                <artifactId>apm-network</artifactId>
                <version>${project.version}</version>
            </dependency>
99 100 101 102 103 104
            <dependency>
                <groupId>org.apache.skywalking</groupId>
                <artifactId>apm-util</artifactId>
                <version>${project.version}</version>
            </dependency>
            <dependency>
105 106 107 108 109
                <groupId>org.apache.skywalking</groupId>
                <artifactId>oap-server-bom</artifactId>
                <version>${project.version}</version>
                <scope>import</scope>
                <type>pom</type>
110
            </dependency>
111 112
        </dependencies>
    </dependencyManagement>
113
</project>