Skip to content

Commit 97ecce1

Browse files
author
Adrian Clay
authored
Upgrade Spring boot to the latest 2.* version (#295)
* Remove the explicit version for spring-jms The Gradle Spring Boot plugin will keep the version consistent with the rest of the Spring packages for us. It will only do this if a version isn't specified however. * Upgrade Spring boot to the latest 2.* version This brings in a lot of fixes, however we'll still need to update to the 3.* branch at some point.
1 parent d11f061 commit 97ecce1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

service/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.6.8'
4-
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
3+
id 'org.springframework.boot' version '2.7.18'
4+
id 'io.spring.dependency-management' version '1.1.7'
55
id "io.freefair.lombok" version "6.4.2"
66
id "checkstyle"
77
id "com.github.spotbugs" version "4.7.9"
@@ -25,7 +25,7 @@ dependencies {
2525
implementation 'org.springframework.boot:spring-boot-starter-actuator'
2626
implementation 'org.springframework.boot:spring-boot-starter-web'
2727
implementation 'org.apache.qpid:qpid-jms-client:1.5.0'
28-
implementation 'org.springframework:spring-jms:5.3.18'
28+
implementation 'org.springframework:spring-jms'
2929
implementation 'ca.uhn.hapi.fhir:hapi-fhir-structures-dstu3:5.7.2'
3030
implementation 'uk.nhs.connect.iucds:iucds-schema:3.0.RC1.2'
3131
implementation 'jaxen:jaxen:1.2.0'

0 commit comments

Comments
 (0)