This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new c21f0658 Add missing dependency in jdbc driver (#2206)
c21f0658 is described below
commit c21f0658ab92727dd689b1ed1c84636274933e7b
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")