Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
vadzimkavalkou committed Oct 10, 2023
2 parents 8afd42d + 8178744 commit c82b803
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions micronaut-reactive/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// https://github.com/bmuschko/gradle-docker-plugin/issues/1035
buildscript {
dependencies {
classpath("com.github.docker-java:docker-java:3.3.0")
classpath("com.github.docker-java:docker-java-transport-httpclient5:3.3.0")
classpath("com.github.docker-java:docker-java:3.3.3")
classpath("com.github.docker-java:docker-java-transport-httpclient5:3.3.3")
}
}

plugins {
id("com.github.johnrengelman.shadow") version "7.1.2"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.google.cloud.tools.jib") version "3.4.0"
id("io.micronaut.minimal.application") version "3.7.2"
id("io.micronaut.graalvm") version "3.7.2"
id("io.micronaut.docker") version "3.7.2"
id("io.micronaut.aot") version "3.7.2"
id("io.micronaut.minimal.application") version "4.1.1"
id("io.micronaut.graalvm") version "4.1.1"
id("io.micronaut.docker") version "4.1.1"
id("io.micronaut.aot") version "4.1.1"
id("java")
}

Expand Down Expand Up @@ -42,7 +42,7 @@ dependencies {
runtimeOnly("ch.qos.logback:logback-classic")
runtimeOnly("io.vertx:vertx-pg-client")
runtimeOnly("io.r2dbc:r2dbc-pool")
runtimeOnly("org.postgresql:r2dbc-postgresql:1.0.1.RELEASE")
runtimeOnly("org.postgresql:r2dbc-postgresql:1.0.2.RELEASE")
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion quarkus-reactive/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'io.quarkus' version '3.4.1'
id 'io.quarkus' version '3.4.2'
}

repositories {
Expand Down
4 changes: 2 additions & 2 deletions vertx-reactive/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
java
application
id("com.github.johnrengelman.shadow") version "7.1.2"
id("com.github.johnrengelman.shadow") version "8.1.1"
}

group = "by.vk"
Expand All @@ -13,7 +13,7 @@ repositories {
mavenCentral()
}

val vertxVersion = "4.4.1"
val vertxVersion = "4.4.5"

val mainVerticleName = "by.vk.vertx.reactive.MainVerticle"
val launcherClassName = "io.vertx.core.Launcher"
Expand Down

0 comments on commit c82b803

Please sign in to comment.