Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 15d57ba

Browse files
committedMar 27, 2023
[#9666] Add redis pubsub
1 parent 7bc5ffa commit 15d57ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2762
-0
lines changed
 

‎pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
<module>profiler-optional</module>
107107
<module>profiler-test</module>
108108
<module>rpc</module>
109+
<module>redis</module>
109110
<module>thrift</module>
110111
<module>grpc</module>
111112
<module>test</module>
@@ -335,6 +336,11 @@
335336
<artifactId>pinpoint-rpc</artifactId>
336337
<version>${project.version}</version>
337338
</dependency>
339+
<dependency>
340+
<groupId>com.navercorp.pinpoint</groupId>
341+
<artifactId>pinpoint-redis</artifactId>
342+
<version>${project.version}</version>
343+
</dependency>
338344
<dependency>
339345
<groupId>com.navercorp.pinpoint</groupId>
340346
<artifactId>pinpoint-thrift</artifactId>

‎redis/pom.xml

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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

Comments
 (0)
Please sign in to comment.