pom.xml 2.5 KB
Newer Older
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 3
	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>
4

wu-sheng's avatar
wu-sheng 已提交
5
	<parent>
A
ascrutae 已提交
6
		<groupId>com.a.eye</groupId>
7
		<artifactId>skywalking-sniffer</artifactId>
8
		<version>2.0-2016</version>
wu-sheng's avatar
wu-sheng 已提交
9 10
	</parent>

11

12 13
	<artifactId>skywalking-api</artifactId>
	<packaging>jar</packaging>
14

15 16
	<name>skywalking-api</name>
	<url>http://maven.apache.org</url>
17

18 19 20
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
21

22 23
	<dependencies>

A
ascrutae 已提交
24 25 26
		<dependency>
			<groupId>net.bytebuddy</groupId>
			<artifactId>byte-buddy</artifactId>
27
			<version>1.4.16</version>
A
ascrutae 已提交
28 29
		</dependency>

30
		<dependency>
wu-sheng's avatar
wu-sheng 已提交
31 32 33
			<groupId>io.netty</groupId>
			<artifactId>netty-all</artifactId>
			<version>4.0.33.Final</version>
34 35 36
		</dependency>

		<dependency>
A
ascrutae 已提交
37
			<groupId>com.a.eye</groupId>
A
ascrutae 已提交
38
			<artifactId>skywalking-test-api</artifactId>
39
			<version>2.0-2016</version>
40 41
			<scope>test</scope>
		</dependency>
42

A
ascrutae 已提交
43 44 45 46 47
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>2.7</version>
		</dependency>
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.powermock</groupId>
			<artifactId>powermock-api-mockito</artifactId>
			<version>1.6.5</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.powermock</groupId>
			<artifactId>powermock-module-junit4</artifactId>
			<version>1.6.5</version>
			<scope>test</scope>
		</dependency>
67 68
	</dependencies>
	<build>
wu-sheng's avatar
wu-sheng 已提交
69 70 71 72
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
wu-sheng's avatar
wu-sheng 已提交
73 74
					<source>1.7</source>
					<target>1.7</target>
wu-sheng's avatar
wu-sheng 已提交
75 76 77 78 79 80 81 82 83 84 85
					<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>
86 87 88 89 90 91 92 93 94 95 96 97 98 99
			<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>
wu-sheng's avatar
wu-sheng 已提交
100 101
		</plugins>
	</build>
102
</project>