File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
iexec-blockchain-adapter-api-library Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11plugins {
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
4852dependencies {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88dependencies {
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+
2226testing {
2327 suites {
2428 test {
You can’t perform that action at this time.
0 commit comments