pom.xml 5.5 KB
Newer Older
1
<!--
wu-sheng's avatar
wu-sheng 已提交
2 3 4 5 6 7
  ~ 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
8 9 10 11 12 13 14 15 16 17 18
  ~
  ~     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.
  ~
  -->

wu-sheng's avatar
wu-sheng 已提交
19
<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">
Z
zhangxin10 已提交
20
    <parent>
P
pengys5 已提交
21
        <artifactId>apm-sdk-plugin</artifactId>
22
        <groupId>org.apache.skywalking</groupId>
wu-sheng's avatar
wu-sheng 已提交
23
        <version>5.0.0-beta-SNAPSHOT</version>
Z
zhangxin10 已提交
24 25
    </parent>
    <modelVersion>4.0.0</modelVersion>
Z
zhangxin10 已提交
26

P
pengys5 已提交
27
    <artifactId>apm-dubbo-plugin</artifactId>
Z
zhangxin10 已提交
28
    <packaging>jar</packaging>
Z
zhangxin10 已提交
29

Z
zhangxin10 已提交
30
    <name>dubbo-plugin</name>
Z
zhangxin10 已提交
31
    <url>http://maven.apache.org</url>
Z
zhangxin10 已提交
32

Z
zhangxin10 已提交
33 34 35
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
Z
zhangxin10 已提交
36

Z
zhangxin10 已提交
37 38 39 40 41 42 43
    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>3.0.0.RELEASE</version>
            <scope>test</scope>
        </dependency>
44 45 46 47 48 49
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>3.0.0.RELEASE</version>
            <scope>test</scope>
        </dependency>
Z
zhangxin10 已提交
50 51 52 53 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxrs</artifactId>
            <version>3.0.7.Final</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-client</artifactId>
            <version>3.0.7.Final</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
            <version>1.0.0.GA</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jackson-provider</artifactId>
            <version>3.0.7.Final</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-core</artifactId>
            <version>8.0.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-logging-juli</artifactId>
            <version>8.0.11</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.ws.rs</groupId>
            <artifactId>javax.ws.rs-api</artifactId>
            <version>2.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.101tec</groupId>
            <artifactId>zkclient</artifactId>
            <version>0.7</version>
            <scope>test</scope>
        </dependency>
104
        <!--
Z
zhangxin10 已提交
105 106 107 108 109 110
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>dubbox</artifactId>
            <version>2.8.3</version>
            <scope>compile</scope>
        </dependency>
111
        -->
112
        <!--
113
        <dependency>
114 115 116
            <groupId>com.alibaba</groupId>
            <artifactId>dubbox</artifactId>
            <version>2.8.4</version>
A
ascrutae 已提交
117
            <scope>provided</scope>
118
        </dependency>
119
-->
120 121 122
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>dubbo</artifactId>
wu-sheng's avatar
wu-sheng 已提交
123
            <version>2.5.10</version>
124
            <scope>provided</scope>
125
        </dependency>
126

Z
zhangxin10 已提交
127 128 129 130 131 132 133 134 135 136
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.2.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.20.0-GA</version>
A
ascrutae 已提交
137
            <scope>test</scope>
Z
zhangxin10 已提交
138 139
        </dependency>
    </dependencies>
Z
zhangxin10 已提交
140 141 142 143 144 145 146 147 148 149
    <build>
        <plugins>
            <plugin>
                <!-- 源码插件 -->
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <!-- 发布时自动将源码同时发布的配置 -->
                <executions>
                    <execution>
                        <id>attach-sources</id>
150
                        <phase>none</phase>
Z
zhangxin10 已提交
151 152 153 154 155 156 157 158
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
Z
zhangxin10 已提交
159
</project>