pom.xml 909 字节
Newer Older
1 2 3 4 5 6
<?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>
        <groupId>org.skywalking</groupId>
7
        <artifactId>apm-sdk-plugin</artifactId>
wu-sheng's avatar
wu-sheng 已提交
8
        <version>3.2.3-2017</version>
9 10 11
    </parent>
    <modelVersion>4.0.0</modelVersion>

12 13 14 15 16 17
    <artifactId>apm-feign-default-http-9.x-plugin</artifactId>
    <packaging>jar</packaging>

    <properties>
        <feign.version>9.5.0</feign.version>
    </properties>
18

19 20 21 22 23
    <dependencies>
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-core</artifactId>
            <version>${feign.version}</version>
24
            <scope>provided</scope>
25 26
        </dependency>
    </dependencies>
wu-sheng's avatar
wu-sheng 已提交
27
</project>