189 lines
7.7 KiB
XML
189 lines
7.7 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.a.eye</groupId>
|
|
<artifactId>skywalking</artifactId>
|
|
<version>3.0-2017</version>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU GENERAL PUBLIC LICENSE V3</name>
|
|
<url>https://github.com/wu-sheng/sky-walking/blob/master/LICENSE</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Wu Sheng</name>
|
|
<email>wu.sheng@foxmail.com</email>
|
|
<url>https://wu-sheng.github.io/me/</url>
|
|
</developer>
|
|
<developer>
|
|
<name>Zhang Xin</name>
|
|
<url>https://github.com/ascrutae</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>skywalking-commons</module>
|
|
<module>skywalking-sniffer</module>
|
|
<module>skywalking-application-toolkit</module>
|
|
<module>skywalking-collector</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>skywalking</name>
|
|
<url>https://github.com/wu-sheng/sky-walking</url>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/wu-sheng/sky-walking/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>travis</system>
|
|
<url>https://travis-ci.org/wu-sheng/sky-walking</url>
|
|
</ciManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<compiler.version>1.8</compiler.version>
|
|
<scala.compiler.version>2.11.7</scala.compiler.version>
|
|
<powermock.version>1.6.4</powermock.version>
|
|
<docker.plugin.version>0.4.13</docker.plugin.version>
|
|
|
|
<shade.package>com.a.eye.skywalking.dependencies</shade.package>
|
|
<shade.net.bytebuddy.source>net.bytebuddy</shade.net.bytebuddy.source>
|
|
<shade.net.bytebuddy.target>${shade.package}.${shade.net.bytebuddy.source}</shade.net.bytebuddy.target>
|
|
<shade.com.lmax.disruptor.source>com.lmax.disruptor</shade.com.lmax.disruptor.source>
|
|
<shade.com.lmax.disruptor.target>${shade.package}.${shade.com.lmax.disruptor.source}</shade.com.lmax.disruptor.target>
|
|
<shade.akka.source>akka</shade.akka.source>
|
|
<shade.akka.target>${shade.package}.${shade.akka.source}</shade.akka.target>
|
|
<shade.scala.source>scala</shade.scala.source>
|
|
<shade.scala.target>${shade.package}.${shade.scala.source}</shade.scala.target>
|
|
<shade.org.agrona.source>org.agrona</shade.org.agrona.source>
|
|
<shade.org.agrona.target>${shade.package}.${shade.org.agrona.source}</shade.org.agrona.target>
|
|
<shade.org.jboss.netty.source>org.jboss.netty</shade.org.jboss.netty.source>
|
|
<shade.org.jboss.netty.target>${shade.package}.${shade.org.jboss.netty.source}</shade.org.jboss.netty.target>
|
|
<shade.org.reactivestreams.source>org.reactivestreams</shade.org.reactivestreams.source>
|
|
<shade.org.reactivestreams.target>${shade.package}.${shade.org.reactivestreams.source}</shade.org.reactivestreams.target>
|
|
<shade.org.uncommons.maths.source>org.uncommons.maths</shade.org.uncommons.maths.source>
|
|
<shade.org.uncommons.maths.target>${shade.package}.${shade.org.uncommons.maths.source}</shade.org.uncommons.maths.target>
|
|
<shade.com.google.source>com.google</shade.com.google.source>
|
|
<shade.com.google.target>${shade.package}.${shade.com.google.source}</shade.com.google.target>
|
|
<shade.io.aeron.source>io.aeron</shade.io.aeron.source>
|
|
<shade.io.aeron.target>${shade.package}.${shade.io.aeron.source}</shade.io.aeron.target>
|
|
<shade.com.typesafe.source>com.typesafe</shade.com.typesafe.source>
|
|
<shade.com.typesafe.target>${shade.package}.${shade.com.typesafe.source}</shade.com.typesafe.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>1.10.19</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.powermock</groupId>
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
<version>${powermock.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.powermock</groupId>
|
|
<artifactId>powermock-api-mockito</artifactId>
|
|
<version>${powermock.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${compiler.version}</source>
|
|
<target>${compiler.version}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<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>com.spotify</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<version>${docker.plugin.version}</version>
|
|
<configuration>
|
|
<skipDocker>true</skipDocker>
|
|
</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>
|
|
<version>2.4</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
<version>2.3</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
<version>4.1.0</version>
|
|
<configuration>
|
|
<repoToken>GGTAeHsfVql3x1BmTFaJvxC27f5sfcZNg</repoToken>
|
|
<sourceDirectories>
|
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
|
</sourceDirectories>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- 覆盖率 -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<configuration>
|
|
<check>true</check>
|
|
<encoding>UTF-8</encoding>
|
|
<aggregate>true</aggregate>
|
|
<formats>
|
|
<format>xml</format>
|
|
<format>html</format>
|
|
</formats>
|
|
<instrumentation>
|
|
<excludes>
|
|
<exclude>com/a/eye/skywalking/trace/proto/*.class</exclude>
|
|
</excludes>
|
|
</instrumentation>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|