Skip to content

Commit f22fddf

Browse files
committed
#BAEL-10229 Fix the build (specify the Spring version in the ethereum module and restore Spring Boot version 2.1.7 in the spring-boot-persistence module)
1 parent 98e1395 commit f22fddf

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

ethereum/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<dependency>
3333
<groupId>org.springframework</groupId>
3434
<artifactId>spring-core</artifactId>
35+
<version>${spring.version}</version>
3536
</dependency>
3637
<dependency>
3738
<groupId>org.springframework</groupId>

persistence-modules/spring-boot-persistence/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@
1717
<dependency>
1818
<groupId>org.springframework.boot</groupId>
1919
<artifactId>spring-boot-starter-web</artifactId>
20+
<version>${spring-boot.version}</version>
2021
</dependency>
2122
<dependency>
2223
<groupId>org.springframework.boot</groupId>
2324
<artifactId>spring-boot-starter-thymeleaf</artifactId>
25+
<version>${spring-boot.version}</version>
2426
</dependency>
2527
<dependency>
2628
<groupId>org.springframework.boot</groupId>
2729
<artifactId>spring-boot-starter-data-jpa</artifactId>
30+
<version>${spring-boot.version}</version>
2831
<exclusions>
2932
<exclusion>
3033
<groupId>com.zaxxer</groupId>
@@ -35,6 +38,7 @@
3538
<dependency>
3639
<groupId>org.springframework.boot</groupId>
3740
<artifactId>spring-boot-starter-test</artifactId>
41+
<version>${spring-boot.version}</version>
3842
</dependency>
3943
<dependency>
4044
<groupId>org.mockito</groupId>
@@ -99,6 +103,7 @@
99103
<validation-api.version>2.0.1.Final</validation-api.version>
100104
<derby.version>10.13.1.1</derby.version>
101105
<hsqldb.version>2.3.4</hsqldb.version>
106+
<spring-boot.version>2.1.7.RELEASE</spring-boot.version>
102107
</properties>
103108

104109
</project>

0 commit comments

Comments
 (0)