This is an automated email from the ASF dual-hosted git repository. mtaha pushed a commit to branch PG15 in repository https://gitbox.apache.org/repos/asf/age.git
commit 5af73b5b2c1f4d0bad17780ad666d2e5beddd11e Author: Muhammad Taha Naveed <[email protected]> AuthorDate: Wed Aug 13 19:51:08 2025 +0500 Add missing dependency in jdbc driver (#2206) - This was also failing CI. The issue is described here https://github.com/gradle/gradle/issues/33950 --- drivers/jdbc/lib/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/jdbc/lib/build.gradle.kts b/drivers/jdbc/lib/build.gradle.kts index 2ba529ec..0b63bc5a 100644 --- a/drivers/jdbc/lib/build.gradle.kts +++ b/drivers/jdbc/lib/build.gradle.kts @@ -36,6 +36,7 @@ dependencies { testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation("org.testcontainers:testcontainers:1.18.0") testImplementation("org.postgresql:postgresql:42.6.0")
