diff options
| author | Paul-Christian Volkmer | 2024-06-20 11:37:34 +0200 |
|---|---|---|
| committer | GitHub | 2024-06-20 11:37:34 +0200 |
| commit | 5867ed9dd3b59309d9e452af0b470daa989006c6 (patch) | |
| tree | 9aa70a10bbb418003c04ab2c49a3912c10201185 | |
| parent | 2a34c0efc9899bcec57e769c3af3891a4abd0628 (diff) | |
| parent | 4d6d1879e6dc91345162619e0d72a80d1ee52b6b (diff) | |
Merge pull request #67 from CCC-MF/66-update-auf-spring-boot-33x
chore: update to spring boot 3.3.0
| -rw-r--r-- | build.gradle.kts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index dab24ab..d247326 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ import org.springframework.boot.gradle.tasks.bundling.BootBuildImage plugins { war - id("org.springframework.boot") version "3.2.6" + id("org.springframework.boot") version "3.3.0" id("io.spring.dependency-management") version "1.1.5" kotlin("jvm") version "1.9.24" kotlin("plugin.spring") version "1.9.24" @@ -65,6 +65,7 @@ dependencies { implementation("org.thymeleaf.extras:thymeleaf-extras-springsecurity6") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.springframework.kafka:spring-kafka") + implementation("org.flywaydb:flyway-database-postgresql") implementation("org.flywaydb:flyway-mysql") implementation("commons-codec:commons-codec") implementation("io.projectreactor.kotlin:reactor-kotlin-extensions") |
