1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <parent >
6
+ <artifactId >pinpoint</artifactId >
7
+ <groupId >com.navercorp.pinpoint</groupId >
8
+ <version >2.5.1-SNAPSHOT</version >
9
+ </parent >
10
+ <modelVersion >4.0.0</modelVersion >
11
+
12
+ <artifactId >pinpoint-redis</artifactId >
13
+
14
+ <properties >
15
+ <jdk .version>11</jdk .version>
16
+ <jdk .home>${env.JAVA_11_HOME} </jdk .home>
17
+ </properties >
18
+
19
+ <dependencies >
20
+ <dependency >
21
+ <groupId >org.springframework.data</groupId >
22
+ <artifactId >spring-data-redis</artifactId >
23
+ <version >${spring.boot.version} </version >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >org.springframework.boot</groupId >
27
+ <artifactId >spring-boot-autoconfigure</artifactId >
28
+ <version >${spring.boot.version} </version >
29
+ </dependency >
30
+
31
+ <dependency >
32
+ <groupId >com.google.code.gson</groupId >
33
+ <artifactId >gson</artifactId >
34
+ <version >2.10.1</version >
35
+ </dependency >
36
+ <dependency >
37
+ <groupId >com.fasterxml.jackson.core</groupId >
38
+ <artifactId >jackson-databind</artifactId >
39
+ </dependency >
40
+ <dependency >
41
+ <groupId >io.lettuce</groupId >
42
+ <artifactId >lettuce-core</artifactId >
43
+ <version >6.2.3.RELEASE</version >
44
+ </dependency >
45
+ <dependency >
46
+ <groupId >org.apache.commons</groupId >
47
+ <artifactId >commons-pool2</artifactId >
48
+ <version >2.11.1</version >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >org.apache.thrift</groupId >
52
+ <artifactId >libthrift</artifactId >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >jakarta.validation</groupId >
56
+ <artifactId >jakarta.validation-api</artifactId >
57
+ </dependency >
58
+ <dependency >
59
+ <groupId >jakarta.annotation</groupId >
60
+ <artifactId >jakarta.annotation-api</artifactId >
61
+ <version >2.1.1</version >
62
+ </dependency >
63
+
64
+ <dependency >
65
+ <groupId >junit</groupId >
66
+ <artifactId >junit</artifactId >
67
+ <scope >test</scope >
68
+ </dependency >
69
+ </dependencies >
70
+
71
+ </project >
0 commit comments