This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 9907f803a0 minor refactor: use preferred maven coordinate syntax
9907f803a0 is described below
commit 9907f803a0e0d2b70f2e8b5191444ad64ad016dd
Author: Paul King <[email protected]>
AuthorDate: Thu Sep 25 13:07:32 2025 +1000
minor refactor: use preferred maven coordinate syntax
---
subprojects/groovy-sql/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/subprojects/groovy-sql/build.gradle
b/subprojects/groovy-sql/build.gradle
index be98db8b37..116128481d 100644
--- a/subprojects/groovy-sql/build.gradle
+++ b/subprojects/groovy-sql/build.gradle
@@ -22,7 +22,7 @@ plugins {
dependencies {
api rootProject // Sql uses Closure...
- testImplementation group: 'org.hsqldb', name: 'hsqldb', version: '2.7.4'
+ testImplementation 'org.hsqldb:hsqldb:2.7.4'
// uncomment to test with other databases (requires changes elsewhere too)
// testImplementation 'com.h2database:h2:1.3.164'
// testImplementation 'hsqldb:hsqldb:1.8.0.10'