pom.xml 3.5 KB
Newer Older
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
  -->

20
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 22
         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 已提交
23

24
    <parent>
P
pengys5 已提交
25 26
        <groupId>org.skywalking</groupId>
        <artifactId>apm-sniffer</artifactId>
wu-sheng's avatar
wu-sheng 已提交
27
        <version>3.2.3-2017</version>
28 29
    </parent>

P
pengys5 已提交
30
    <artifactId>apm-sdk-plugin</artifactId>
31 32 33 34 35 36
    <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 已提交
37
        <module>motan-plugin</module>
B
baiyang 已提交
38
        <module>mongodb-3.x-plugin</module>
39 40
        <module>feign-default-http-9.x-plugin</module>
        <module>okhttp-3.x-plugin</module>
柏杨 Bai Yang 已提交
41 42
        <module>resin-3.x-plugin</module>
        <module>resin-4.x-plugin</module>
A
ascrutae 已提交
43
        <module>spring-plugins</module>
A
ascrutae 已提交
44
        <module>struts2-2.x-plugin</module>
45
        <module>nutz-plugins</module>
A
ascrutae 已提交
46
        <module>jetty-plugin</module>
IluckySi's avatar
IluckySi 已提交
47
        <module>spymemcached-2.x-plugin</module>
G
gaohongtao 已提交
48
        <module>sharding-jdbc-1.5.x-plugin</module>
A
ascrutae 已提交
49
    </modules>
50
    <packaging>pom</packaging>
Z
zhangxin10 已提交
51

P
pengys5 已提交
52
    <name>apm-sdk-plugin</name>
53
    <url>http://maven.apache.org</url>
Z
zhangxin10 已提交
54

55 56 57
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
Z
zhangxin10 已提交
58

59 60
    <dependencies>
        <dependency>
P
pengys5 已提交
61
            <groupId>org.skywalking</groupId>
62
            <artifactId>apm-agent-core</artifactId>
63 64
            <version>${project.version}</version>
        </dependency>
A
ascrutae 已提交
65 66 67 68 69 70
        <dependency>
            <groupId>org.skywalking</groupId>
            <artifactId>apm-test-tools</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
71
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
72

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
    <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>
99
</project>