Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/native-sql-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
runtimeOnly(libs.org.apache.logging.log4j.log4j.core)

// Allow authentication to PostgreSQL using SCRAM:
runtimeOnly(libs.com.ongres.scram.client)
runtimeOnly(libs.com.ongres.scram.scram.client)
}

// Optional: enable the bytecode enhancements
Expand Down
2 changes: 1 addition & 1 deletion examples/session-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
runtimeOnly(libs.org.apache.logging.log4j.log4j.core)

// Allow authentication to PostgreSQL using SCRAM:
runtimeOnly(libs.com.ongres.scram.client)
runtimeOnly(libs.com.ongres.scram.scram.client)
}

// Optional: enable the bytecode enhancements
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ junitVersion = "5.13.3"
junitPlatformVersion = "1.13.3"
log4jVersion = "2.25.3"
testcontainersVersion = "1.21.4"
vertxSqlClientVersion = "4.5.22"
vertxWebVersion= "4.5.22"
vertxWebClientVersion = "4.5.22"
vertxSqlClientVersion = "4.5.23"
vertxWebVersion= "4.5.23"
vertxWebClientVersion = "4.5.23"

[libraries]
com-fasterxml-jackson-core-jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jacksonDatabindVersion" }
com-ibm-db2-jcc = { group = "com.ibm.db2", name = "jcc", version = "12.1.3.0" }
com-microsoft-sqlserver-mssql-jdbc = { group = "com.microsoft.sqlserver", name = "mssql-jdbc", version = "13.3.0.jre11-preview" }
com-mysql-mysql-connector-j = { group = "com.mysql", name = "mysql-connector-j", version = "9.5.0" }
com-ongres-scram-client = { group = "com.ongres.scram", name = "client", version = "2.1" }
com-ongres-scram-scram-client = { group = "com.ongres.scram", name = "scram-client", version = "3.2" }
io-smallrye-reactive-mutiny = { group = "io.smallrye.reactive", name = "mutiny", version = "2.7.0" }
io-vertx-vertx-db2-client = { group = "io.vertx", name = "vertx-db2-client", version.ref = "vertxSqlClientVersion" }
io-vertx-vertx-junit5 = { group = "io.vertx", name = "vertx-junit5", version.ref = "vertxSqlClientVersion" }
Expand Down
2 changes: 1 addition & 1 deletion hibernate-reactive-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
testImplementation(libs.io.vertx.vertx.micrometer.metrics)

// Optional dependency of vertx-pg-client, essential when connecting via SASL SCRAM
testImplementation(libs.com.ongres.scram.client)
testImplementation(libs.com.ongres.scram.scram.client)

// JUnit Jupiter
testImplementation(libs.org.junit.jupiter.junit.jupiter.api)
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/bytecode-enhancements-it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
runtimeOnly(libs.io.vertx.vertx.pg.client)

// Allow authentication to PostgreSQL using SCRAM:
runtimeOnly(libs.com.ongres.scram.client)
runtimeOnly(libs.com.ongres.scram.scram.client)

// logging
runtimeOnly(libs.org.apache.logging.log4j.log4j.core)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
runtimeOnly(libs.io.vertx.vertx.pg.client)

// Allow authentication to PostgreSQL using SCRAM:
runtimeOnly(libs.com.ongres.scram.client)
runtimeOnly(libs.com.ongres.scram.scram.client)

// logging
runtimeOnly(libs.org.apache.logging.log4j.log4j.core)
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/techempower-postgres-it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {

runtimeOnly(libs.io.vertx.vertx.pg.client)
// The Pg client requires this dependency
runtimeOnly(libs.com.ongres.scram.client)
runtimeOnly(libs.com.ongres.scram.scram.client)
runtimeOnly(libs.com.fasterxml.jackson.core.jackson.databind)

// logging
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/verticle-postgres-it/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {

runtimeOnly(libs.io.vertx.vertx.pg.client)
// The Pg client requires this dependency
runtimeOnly(libs.com.ongres.scram.client)
runtimeOnly(libs.com.ongres.scram.scram.client)
runtimeOnly(libs.com.fasterxml.jackson.core.jackson.databind)

// logging
Expand Down