pom.xml 924 字节
Newer Older
P
pengys5 已提交
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-collector</artifactId>
        <groupId>org.skywalking</groupId>
wu-sheng's avatar
wu-sheng 已提交
8
        <version>3.2-2017</version>
P
pengys5 已提交
9 10 11
    </parent>
    <modelVersion>4.0.0</modelVersion>

P
pengys5 已提交
12 13 14 15 16 17 18
    <artifactId>apm-collector-client</artifactId>
    <packaging>pom</packaging>
    <modules>
        <module>client-zookeeper</module>
        <module>client-redis</module>
        <module>client-h2</module>
    </modules>
P
pengys5 已提交
19

20 21
    <dependencies>
        <dependency>
P
pengys5 已提交
22
            <groupId>org.skywalking</groupId>
P
pengys5 已提交
23
            <artifactId>apm-collector-core</artifactId>
24 25 26
            <version>${project.version}</version>
        </dependency>
    </dependencies>
P
pengys5 已提交
27
</project>