Skip to content

Commit

Permalink
[AB2D-6269] Update Spring Web Version (#408)
Browse files Browse the repository at this point in the history
* fix checkstyle

* update eventClientVersion to 1.12.10

* update springweb to 5.3.26
  • Loading branch information
Rwolfe-Nava authored Aug 26, 2024
1 parent ac96e4a commit b615348
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ab2d-events-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ dependencies {
implementation(platform(annotationProcessor("com.slack.api:slack-api-client:$slackAPIVersion")))
implementation "org.springframework.boot:spring-boot-starter:${springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}"
implementation "org.springframework:spring-web:${springBootVersion}"
implementation "org.springframework:spring-web:${springWebVersion}"
implementation "org.springframework:spring-webmvc:${springWebVersion}"
implementation "org.springframework.boot:spring-boot-starter-jdbc:${springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-web:${springBootVersion}"
implementation "io.awspring.cloud:spring-cloud-starter-aws:${springCloudAwsVersion}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public static PatientIdentifier.Currency getCurrencyFromTypeCodingExtension(ICom
if (checkCurrencyUrlIsNotValid(url)) {
return PatientIdentifier.Currency.UNKNOWN;
}

Object currValue = Versions.invokeGetMethod(extension, GET_VALUE);
String extValueSystem = (String) Versions.invokeGetMethod(currValue, GET_SYSTEM);
if (CURRENCY_IDENTIFIER.equalsIgnoreCase(extValueSystem)) {
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ext {
bfdVersion='2.2.4'
aggregatorVersion='1.3.4'
filtersVersion='1.9.5'
eventClientVersion='1.12.9'
eventClientVersion='1.12.10'
propertiesClientVersion='1.2.5'
contractClientVersion='1.2.4'
snsClientVersion='0.2.4'
Expand All @@ -40,6 +40,7 @@ ext {
hapiVersion = '7.2.2'
springBootVersion='2.7.6'
springCloudAwsVersion='2.4.4'
springWebVersion="5.3.26"
newRelicVersion='8.4.0'
testContainerVersion='1.18.3'
mockServerVersion='5.15.0'
Expand Down

0 comments on commit b615348

Please sign in to comment.