pom.xml 2.8 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
Z
zhangxin10 已提交
5

6
    <parent>
P
pengys5 已提交
7 8
        <groupId>org.skywalking</groupId>
        <artifactId>apm-sniffer</artifactId>
wu-sheng's avatar
wu-sheng 已提交
9
        <version>3.2.3-2017</version>
10 11
    </parent>

P
pengys5 已提交
12
    <artifactId>apm-sdk-plugin</artifactId>
13 14 15 16 17 18
    <modules>
        <module>dubbo-plugin</module>
        <module>jdbc-plugin</module>
        <module>httpClient-4.x-plugin</module>
        <module>jedis-2.x-plugin</module>
        <module>tomcat-7.x-8.x-plugin</module>
A
ascrutae 已提交
19
        <module>motan-plugin</module>
B
baiyang 已提交
20
        <module>mongodb-3.x-plugin</module>
21 22
        <module>feign-default-http-9.x-plugin</module>
        <module>okhttp-3.x-plugin</module>
柏杨 Bai Yang 已提交
23 24
        <module>resin-3.x-plugin</module>
        <module>resin-4.x-plugin</module>
A
ascrutae 已提交
25
        <module>spring-plugins</module>
A
ascrutae 已提交
26
        <module>struts2-2.x-plugin</module>
27
        <module>nutz-plugins</module>
A
ascrutae 已提交
28
        <module>jetty-plugin</module>
IluckySi's avatar
IluckySi 已提交
29
        <module>spymemcached-2.x-plugin</module>
G
gaohongtao 已提交
30
        <module>sharding-jdbc-1.5.x-plugin</module>
A
ascrutae 已提交
31
    </modules>
32
    <packaging>pom</packaging>
Z
zhangxin10 已提交
33

P
pengys5 已提交
34
    <name>apm-sdk-plugin</name>
35
    <url>http://maven.apache.org</url>
Z
zhangxin10 已提交
36

37 38 39
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
Z
zhangxin10 已提交
40

41 42
    <dependencies>
        <dependency>
P
pengys5 已提交
43
            <groupId>org.skywalking</groupId>
44
            <artifactId>apm-agent-core</artifactId>
45 46
            <version>${project.version}</version>
        </dependency>
A
ascrutae 已提交
47 48 49 50 51 52
        <dependency>
            <groupId>org.skywalking</groupId>
            <artifactId>apm-test-tools</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
53
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.4.3</version>
                <configuration>
                    <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
            </plugin>
            <plugin>
                <!-- 源码插件 -->
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <!-- 发布时自动将源码同时发布的配置 -->
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
81
</project>