Skip to content

Commit b899426

Browse files
Cleaned up dependencies with bom
1 parent 2173afd commit b899426

File tree

2 files changed

+26
-8
lines changed
  • spring-data-eclipse-store
  • spring-data-eclipse-store-benchmark

2 files changed

+26
-8
lines changed

spring-data-eclipse-store-benchmark/pom.xml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,22 @@
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2222

23-
<spring-boot.version>3.2.2</spring-boot.version>
23+
<org.springframework.boot.version>3.2.2</org.springframework.boot.version>
2424
<jmh.version>1.37</jmh.version>
2525
</properties>
2626

27+
<dependencyManagement>
28+
<dependencies>
29+
<dependency>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-dependencies</artifactId>
32+
<version>${org.springframework.boot.version}</version>
33+
<type>pom</type>
34+
<scope>import</scope>
35+
</dependency>
36+
</dependencies>
37+
</dependencyManagement>
38+
2739
<dependencies>
2840
<dependency>
2941
<groupId>software.xdev</groupId>
@@ -34,12 +46,10 @@
3446
<dependency>
3547
<groupId>org.springframework.boot</groupId>
3648
<artifactId>spring-boot</artifactId>
37-
<version>${spring-boot.version}</version>
3849
</dependency>
3950
<dependency>
4051
<groupId>org.springframework.boot</groupId>
4152
<artifactId>spring-boot-starter</artifactId>
42-
<version>${spring-boot.version}</version>
4353
</dependency>
4454

4555
<dependency>

spring-data-eclipse-store/pom.xml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
<eclipse-store.version>1.1.0-SNAPSHOT</eclipse-store.version>
5353
<junit-jupiter.version>5.8.1</junit-jupiter.version>
54-
<spring-context-beans-tx.version>6.1.2</spring-context-beans-tx.version>
54+
<spring-bom.version>6.1.3</spring-bom.version>
5555
<spring-data-commons.version>3.2.1</spring-data-commons.version>
5656
<!-- Should be in sync with org.eclipse.store:integrations-spring-boot3 -->
5757
<spring-boot.version>3.2.0</spring-boot.version>
@@ -84,9 +84,20 @@
8484
<enabled>true</enabled>
8585
</snapshots>
8686
</repository>
87-
8887
</repositories>
8988

89+
<dependencyManagement>
90+
<dependencies>
91+
<dependency>
92+
<groupId>org.springframework</groupId>
93+
<artifactId>spring-framework-bom</artifactId>
94+
<version>${spring-bom.version}</version>
95+
<type>pom</type>
96+
<scope>import</scope>
97+
</dependency>
98+
</dependencies>
99+
</dependencyManagement>
100+
90101
<pluginRepositories>
91102
<!-- The order of definitions matters. Explicitly defining central here
92103
to make sure it has the highest priority. -->
@@ -108,17 +119,14 @@
108119
<dependency>
109120
<groupId>org.springframework</groupId>
110121
<artifactId>spring-tx</artifactId>
111-
<version>${spring-context-beans-tx.version}</version>
112122
</dependency>
113123
<dependency>
114124
<groupId>org.springframework</groupId>
115125
<artifactId>spring-context</artifactId>
116-
<version>${spring-context-beans-tx.version}</version>
117126
</dependency>
118127
<dependency>
119128
<groupId>org.springframework</groupId>
120129
<artifactId>spring-beans</artifactId>
121-
<version>${spring-context-beans-tx.version}</version>
122130
</dependency>
123131

124132
<dependency>

0 commit comments

Comments
 (0)