-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
98 lines (90 loc) · 3.66 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
<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-test</artifactId>
<version>3.2.6-2017</version>
<modules>
<module>portal-project</module>
<module>presistence-project</module>
<module>cache-project</module>
<module>agent-project</module>
</modules>
<packaging>pom</packaging>
<name>skywalking-test</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<motan.version>0.2.2</motan.version>
<dubbox.version>2.8.4</dubbox.version>
<jedis.version>3.6.5</jedis.version>
<spring.version>4.3.2.RELEASE</spring.version>
<opentracing.version>0.20.7</opentracing.version>
<skywalking.version>3.2.5-2017</skywalking.version>
<docker.plugin.version>0.4.13</docker.plugin.version>
<source.compiler.level>1.8</source.compiler.level>
<target.compiler.level>1.8</target.compiler.level>
<docker.imageTag.version>3.2.6-2017</docker.imageTag.version>
<!-- image name-->
<docker.cache.imageName>skywalking/test-cache-server</docker.cache.imageName>
<docker.portal.imageName>skywalking/test-portal</docker.portal.imageName>
<docker.persistence.imageName>skywalking/test-persistence-server</docker.persistence.imageName>
<docker.agent.imageName>skywalking/skywalking-agent</docker.agent.imageName>
</properties>
<dependencies>
<!-- log4j-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>org.skywalking</groupId>
<artifactId>apm-toolkit-log4j-1.x</artifactId>
<version>${skywalking.version}</version>
</dependency>
<dependency>
<groupId>org.skywalking</groupId>
<artifactId>apm-toolkit-log4j-2.x</artifactId>
<version>${skywalking.version}</version>
</dependency>
<dependency>
<groupId>org.skywalking</groupId>
<artifactId>apm-toolkit-opentracing</artifactId>
<version>${skywalking.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<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-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${source.compiler.level}</source>
<target>${target.compiler.level}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>