-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
56 lines (53 loc) · 1.96 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
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-starter</artifactId>
<version>${revision}</version>
</parent>
<artifactId>hp-soa-starter-skywalking</artifactId>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<description>hp-soa: a fully functional, easy-to-use, and highly scalable microservice framework</description>
<url>https://github.com/ldcsaa/hp-soa</url>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-framework-web</artifactId>
</dependency>
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-starter-web-dubbo</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.hpsocket</groupId>
<artifactId>hp-soa-starter-task</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-trace</artifactId>
</dependency>
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-micrometer-registry</artifactId>
</dependency>
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-micrometer-1.10</artifactId>
</dependency>
<!--
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-log4j-2.x</artifactId>
</dependency>
-->
</dependencies>
</project>