Skip to content

Commit 79345ec

Browse files
Upgrade to Spring Boot 2.7.17 and Spring Dependency Management Plugin 1.1.4
1 parent e9b9832 commit 79345ec

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ All notable changes to this project will be documented in this file.
1010

1111
### Dependency Upgrades
1212

13+
- Upgrade to Spring Boot 2.7.17. (#108)
14+
- Upgrade to Spring Dependency Management Plugin 1.1.4. (#108)
1315
- Upgrade to `jenkins-library` 2.7.4. (#107)
1416

1517
## [[8.2.0]](https://github.com/iExecBlockchainComputing/iexec-result-proxy/releases/tag/v8.2.0) 2023-09-28

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
22
id 'java'
33
id 'io.freefair.lombok' version '8.2.2'
4-
id 'org.springframework.boot' version '2.7.14'
5-
id 'io.spring.dependency-management' version '1.1.3'
4+
id 'org.springframework.boot' version '2.7.17'
5+
id 'io.spring.dependency-management' version '1.1.4'
66
id 'jacoco'
77
id 'org.sonarqube' version '4.2.1.3168'
88
id 'maven-publish'
@@ -92,7 +92,7 @@ springBoot {
9292
tasks.named("bootJar") {
9393
manifest {
9494
attributes("Implementation-Title": "iExec Result Proxy",
95-
"Implementation-Version": project.version)
95+
"Implementation-Version": project.version)
9696
}
9797
}
9898

@@ -111,7 +111,7 @@ jacocoTestReport {
111111
xml.required = true
112112
}
113113
}
114-
tasks.test.finalizedBy tasks.jacocoTestReport
114+
tasks.test.finalizedBy tasks.jacocoTestReport
115115
tasks.sonarqube.dependsOn tasks.jacocoTestReport
116116

117117
publishing {

0 commit comments

Comments
 (0)