Skip to content

Commit

Permalink
DTSRD-87: address flyway migration issue (#1674)
Browse files Browse the repository at this point in the history
* DTSRD-87: address flyway migration issue

* DTSRD-87: address multiple jsonobject issue

* DTSRD-87: address flyway issues

* DTSRD-87: address flyway issues

* DTSRD-87: address appinsights issue
  • Loading branch information
kiran-yenigala-hmcts authored Sep 25, 2024
1 parent c94830b commit 08baaf8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG APP_INSIGHTS_AGENT_VERSION=3.4.8
ARG APP_INSIGHTS_AGENT_VERSION=3.5.2
ARG PLATFORM=""
FROM hmctspublic.azurecr.io/base/java${PLATFORM}:21-distroless

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
id 'io.spring.dependency-management' version '1.1.6'
id 'org.sonarqube' version '5.0.0.4638'
id 'org.springframework.boot' version '3.3.1'
id "org.flywaydb.flyway" version '10.1.0'
id "org.flywaydb.flyway" version '10.18.0'
id 'au.com.dius.pact' version '4.1.7'// do not change, otherwise serenity report fails
}

Expand Down Expand Up @@ -375,9 +375,9 @@ dependencies {
//Fix for CVE-2021-29425
implementation 'commons-io:commons-io:2.8.0'

implementation group: 'org.flywaydb', name: 'flyway-core'
implementation group: 'org.flywaydb', name: 'flyway-database-postgresql'
implementation group: 'org.postgresql', name: 'postgresql'
implementation group: 'org.flywaydb', name: 'flyway-core', version: '10.18.0'
runtimeOnly group: 'org.flywaydb', name: 'flyway-database-postgresql', version: '10.18.0'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.7.4'

implementation group: 'com.google.guava', name: 'guava', version: '32.1.3-jre'
//Added org.glassfish to support javax.el
Expand Down

0 comments on commit 08baaf8

Please sign in to comment.