From c84674654a5ed0105a80319866c9a063ded109e4 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Sun, 17 Sep 2023 12:24:57 -0700 Subject: [PATCH] common.gradle: update Groovy to v3.0.19 --- common.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.gradle b/common.gradle index 233b4cfcc1..dc429f97aa 100644 --- a/common.gradle +++ b/common.gradle @@ -43,7 +43,7 @@ dependencies { // Adding dependencies here will add the dependencies to each subproject. testImplementation 'junit:junit:4.13.2' testImplementation 'org.mockito:mockito-core:3.12.4' - testImplementation 'org.codehaus.groovy:groovy-test:3.0.17' + testImplementation 'org.codehaus.groovy:groovy-test:3.0.19' } // Uncomment if you want to see the status of every test that is run and @@ -185,7 +185,7 @@ publishing { } publishToMavenLocal.doLast { - println 'published ' + project.getName() + "-${jmeFullVersion} to mavenLocal" + println 'published ' + project.getName() + "-${jmeFullVersion} to mavenLocal" } task('install') { dependsOn 'publishToMavenLocal'