diff --git a/modules/cockroachdb/build.gradle b/modules/cockroachdb/build.gradle index 6d7acda1515..275e69eef3d 100644 --- a/modules/cockroachdb/build.gradle +++ b/modules/cockroachdb/build.gradle @@ -3,7 +3,7 @@ description = "Testcontainers :: JDBC :: CockroachDB" dependencies { api project(':testcontainers-jdbc') - testRuntimeOnly 'org.postgresql:postgresql:42.7.8' + testRuntimeOnly 'org.postgresql:postgresql:42.7.10' testImplementation project(':testcontainers-jdbc-test') } diff --git a/modules/cratedb/build.gradle b/modules/cratedb/build.gradle index be60919c0e3..3a93f97cae8 100644 --- a/modules/cratedb/build.gradle +++ b/modules/cratedb/build.gradle @@ -3,7 +3,7 @@ description = "Testcontainers :: JDBC :: CrateDB" dependencies { api project(':testcontainers-jdbc') - testRuntimeOnly 'org.postgresql:postgresql:42.7.8' + testRuntimeOnly 'org.postgresql:postgresql:42.7.10' testImplementation project(':testcontainers-jdbc-test') diff --git a/modules/junit-jupiter/build.gradle b/modules/junit-jupiter/build.gradle index b9c2fc7bcee..e362b51c756 100644 --- a/modules/junit-jupiter/build.gradle +++ b/modules/junit-jupiter/build.gradle @@ -14,6 +14,6 @@ dependencies { exclude(module: 'hamcrest-core') } - testRuntimeOnly 'org.postgresql:postgresql:42.7.8' + testRuntimeOnly 'org.postgresql:postgresql:42.7.10' testRuntimeOnly 'com.mysql:mysql-connector-j:9.6.0' } diff --git a/modules/postgresql/build.gradle b/modules/postgresql/build.gradle index cf1c69a9a19..73e424f9ffc 100644 --- a/modules/postgresql/build.gradle +++ b/modules/postgresql/build.gradle @@ -7,7 +7,7 @@ dependencies { compileOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE' testImplementation project(':testcontainers-jdbc-test') - testRuntimeOnly 'org.postgresql:postgresql:42.7.8' + testRuntimeOnly 'org.postgresql:postgresql:42.7.10' testImplementation testFixtures(project(':testcontainers-r2dbc')) testRuntimeOnly 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE' diff --git a/modules/questdb/build.gradle b/modules/questdb/build.gradle index 6403e4cd11d..5e9da5686d8 100644 --- a/modules/questdb/build.gradle +++ b/modules/questdb/build.gradle @@ -4,7 +4,7 @@ dependencies { api project(':testcontainers') api project(':testcontainers-jdbc') - testRuntimeOnly 'org.postgresql:postgresql:42.7.8' + testRuntimeOnly 'org.postgresql:postgresql:42.7.10' testImplementation project(':testcontainers-jdbc-test') testImplementation 'org.questdb:questdb:9.2.2' diff --git a/modules/spock/build.gradle b/modules/spock/build.gradle index 7522d7f697f..b45362a8e63 100644 --- a/modules/spock/build.gradle +++ b/modules/spock/build.gradle @@ -15,7 +15,7 @@ dependencies { testImplementation 'com.zaxxer:HikariCP:7.0.2' testImplementation 'org.apache.httpcomponents:httpclient:4.5.14' - testRuntimeOnly 'org.postgresql:postgresql:42.7.8' + testRuntimeOnly 'org.postgresql:postgresql:42.7.10' testRuntimeOnly 'com.mysql:mysql-connector-j:9.6.0' testRuntimeOnly platform('org.junit:junit-bom:5.14.1') testRuntimeOnly 'org.junit.platform:junit-platform-launcher'