Skip to content

Commit 4f2d232

Browse files
committed
[#noissue] Cleanup spring-data-redis dependency
1 parent 22a4254 commit 4f2d232

File tree

6 files changed

+80
-3
lines changed

6 files changed

+80
-3
lines changed

agent-module/agent-testweb/redis-lettuce-plugin-testweb/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3+
<!--
4+
~ Copyright 2025 NAVER Corp.
5+
~
6+
~ Licensed under the Apache License, Version 2.0 (the "License");
7+
~ you may not use this file except in compliance with the License.
8+
~ You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
319
<project xmlns="http://maven.apache.org/POM/4.0.0"
420
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
521
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -18,6 +34,8 @@
1834
<pinpoint.agent.jvmargument>
1935
${pinpoint.agent.default.jvmargument}
2036
</pinpoint.agent.jvmargument>
37+
38+
<spring-data.version>${spring-data2.version}</spring-data.version>
2139
</properties>
2240

2341
<dependencies>

agent-module/agent-testweb/spring-cloud-gateway-plugin-testweb/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3+
<!--
4+
~ Copyright 2025 NAVER Corp.
5+
~
6+
~ Licensed under the Apache License, Version 2.0 (the "License");
7+
~ you may not use this file except in compliance with the License.
8+
~ You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
319
<project xmlns="http://maven.apache.org/POM/4.0.0"
420
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
521
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -17,6 +33,8 @@
1733
<pinpoint.agent.jvmargument>
1834
${pinpoint.agent.default.jvmargument}
1935
</pinpoint.agent.jvmargument>
36+
37+
<spring-data.version>${spring-data2.version}</spring-data.version>
2038
</properties>
2139

2240
<dependencies>

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,18 @@
899899
<version>1.81</version>
900900
</dependency>
901901

902+
<dependency>
903+
<groupId>org.springframework.data</groupId>
904+
<artifactId>spring-data-redis</artifactId>
905+
<version>${spring-data.version}</version>
906+
<exclusions>
907+
<exclusion>
908+
<groupId>org.springframework</groupId>
909+
<artifactId>spring-oxm</artifactId>
910+
</exclusion>
911+
</exclusions>
912+
</dependency>
913+
902914
<dependency>
903915
<groupId>org.testcontainers</groupId>
904916
<artifactId>testcontainers-bom</artifactId>

realtime/realtime-common/pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2025 NAVER Corp.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
218
<project xmlns="http://maven.apache.org/POM/4.0.0"
319
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
420
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -39,7 +55,6 @@
3955
<dependency>
4056
<groupId>org.springframework.data</groupId>
4157
<artifactId>spring-data-redis</artifactId>
42-
<version>${spring-data.version}</version>
4358
</dependency>
4459
<dependency>
4560
<groupId>org.springframework.boot</groupId>

redis-timeseries/pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2025 NAVER Corp.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
218
<project xmlns="http://maven.apache.org/POM/4.0.0"
319
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
420
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -46,7 +62,6 @@
4662
<dependency>
4763
<groupId>org.springframework.data</groupId>
4864
<artifactId>spring-data-redis</artifactId>
49-
<version>${spring-data.version}</version>
5065
</dependency>
5166

5267
<dependency>

redis/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
<dependency>
3838
<groupId>org.springframework.data</groupId>
3939
<artifactId>spring-data-redis</artifactId>
40-
<version>${spring-data.version}</version>
4140
</dependency>
4241
<dependency>
4342
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)