Skip to content

Commit 5103170

Browse files
Upgrade to Spring Boot 3.3.8 (#168)
1 parent dc2c1dc commit 5103170

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ All notable changes to this project will be documented in this file.
2121
### Dependency Upgrades
2222

2323
- Upgrade to `eclipse-temurin:17.0.13_11-jre-focal`. (#162)
24-
- Upgrade to Spring Boot 3.0.13. (#162)
2524
- Upgrade to Spring Doc OpenAPI 2.6.0. (#162)
25+
- Upgrade to Spring Boot 3.3.8. (#168)
2626

2727
## [[8.6.0]](https://github.com/iExecBlockchainComputing/iexec-blockchain-adapter-api/releases/tag/v8.6.0) 2024-12-20
2828

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
33
id 'io.freefair.lombok' version '8.10.2'
4-
id 'org.springframework.boot' version '3.0.13'
4+
id 'org.springframework.boot' version '3.3.8'
55
id 'io.spring.dependency-management' version '1.1.6'
66
id 'jacoco'
77
id 'org.sonarqube' version '5.1.0.4882'
@@ -43,6 +43,10 @@ allprojects {
4343
sourceCompatibility = JavaVersion.VERSION_17
4444
targetCompatibility = JavaVersion.VERSION_17
4545
}
46+
47+
tasks.withType(JavaCompile).configureEach {
48+
options.compilerArgs.add('-parameters')
49+
}
4650
}
4751

4852
dependencies {

iexec-blockchain-adapter-api-library/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
dependencies {
9-
implementation platform('org.springframework.boot:spring-boot-dependencies:3.0.13')
9+
implementation platform('org.springframework.boot:spring-boot-dependencies:3.3.8')
1010
implementation "com.iexec.commons:iexec-commons-poco:$iexecCommonsPocoVersion"
1111
implementation "com.iexec.common:iexec-common:$iexecCommonVersion"
1212
implementation 'org.apache.commons:commons-lang3'
@@ -19,6 +19,10 @@ java {
1919
withSourcesJar()
2020
}
2121

22+
tasks.withType(JavaCompile).configureEach {
23+
options.compilerArgs.add('-parameters')
24+
}
25+
2226
testing {
2327
suites {
2428
test {

0 commit comments

Comments
 (0)