diff --git a/build.gradle b/build.gradle index cbf23b05..8110c104 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,9 @@ +buildscript { + dependencies { + classpath "org.flywaydb:flyway-database-postgresql:11.14.1" + } +} + plugins { id 'application' id 'checkstyle' @@ -8,7 +14,7 @@ plugins { id 'org.springframework.boot' version '3.4.1' id 'com.github.ben-manes.versions' version '0.53.0' id 'org.sonarqube' version '6.3.1.5724' - id "org.flywaydb.flyway" version '9.22.3' + id "org.flywaydb.flyway" version '11.14.1' id 'info.solidsoft.pitest' version '1.15.0' id 'uk.gov.hmcts.java' version '0.12.67' } @@ -37,7 +43,7 @@ def versions = [ springBoot : '3.4.1', springfoxSwagger : '2.10.5', lombok : '1.18.42', - flyway : '9.22.3', + flyway : '11.14.1', camel : '4.14.1', gradlePitest : '1.15.0', pitest : '1.17.0',