Skip to content

Commit

Permalink
Update Quarkus to 3.11.1 and fix flyway migration
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-eberle committed Jun 7, 2024
1 parent 08c927a commit ec1ca56
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion bookstore-quarkus-reactive/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ dependencies {
implementation("io.quarkus:quarkus-arc")

implementation("io.quarkus:quarkus-hibernate-reactive-panache")
implementation("io.quarkus:quarkus-flyway")
implementation("io.quarkus:quarkus-jdbc-postgresql")
implementation("io.quarkus:quarkus-reactive-pg-client")
implementation("io.quarkus:quarkus-flyway")
implementation("org.flywaydb:flyway-database-postgresql")

implementation("io.quarkus:quarkus-resteasy-reactive")
implementation("io.quarkus:quarkus-resteasy-reactive-kotlin-serialization")
Expand Down
4 changes: 2 additions & 2 deletions bookstore-quarkus-reactive/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#
# Quarkus
quarkusPluginId=io.quarkus
quarkusPluginVersion=3.11.0
quarkusPluginVersion=3.11.1
quarkusPlatformGroupId=io.quarkus.platform
quarkusPlatformArtifactId=quarkus-bom
quarkusPlatformVersion=3.11.0
quarkusPlatformVersion=3.11.1
#
# Kotlin
kotlinVersion=1.9.23
Expand Down
1 change: 1 addition & 0 deletions bookstore-quarkus-sync/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ dependencies {
implementation("io.quarkus:quarkus-hibernate-orm")
implementation("io.quarkus:quarkus-jdbc-postgresql")
implementation("io.quarkus:quarkus-flyway")
implementation("org.flywaydb:flyway-database-postgresql")

implementation("io.quarkus:quarkus-kotlin")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
Expand Down
4 changes: 2 additions & 2 deletions bookstore-quarkus-sync/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#
# Quarkus
quarkusPluginId=io.quarkus
quarkusPluginVersion=3.11.0
quarkusPluginVersion=3.11.1
quarkusPlatformGroupId=io.quarkus.platform
quarkusPlatformArtifactId=quarkus-bom
quarkusPlatformVersion=3.11.0
quarkusPlatformVersion=3.11.1
#
# Kotlin
kotlinVersion=1.9.23
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9"
services:
postgres:
image: postgres:15.5
image: postgres:15
ports:
- "5432:5432"
restart: always
Expand Down

0 comments on commit ec1ca56

Please sign in to comment.