Skip to content

Commit

Permalink
Merge branch 'main' into SpringBoot-wip
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnovaae authored Aug 27, 2024
2 parents b187011 + 2395d12 commit 56485cd
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 @@ -4,7 +4,8 @@ dependencies {
implementation "commons-codec:commons-codec:1.9"
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-aws-dependencies:${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 @@ -37,9 +37,10 @@ ext {

commonsLangVersion='3.12.0'
lombokVersion = '1.18.34'
hapiVersion = '7.2.2'
springBootVersion='3.2.8'
springCloudAwsVersion='3.1.1'
hapiVersion = '6.8.0'
springWebVersion="5.3.26"
newRelicVersion='8.4.0'
testContainerVersion='1.20.1'
mockServerVersion='5.15.0'
Expand Down

0 comments on commit 56485cd

Please sign in to comment.