You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2021/08/29 18:48:00 UTC

[groovy] branch master updated: Tweak build script to ensure `GeneratedMetaMethod.DgmMethodRecord.loadDgmInfo` could find "dgminfo" file

This is an automated email from the ASF dual-hosted git repository.

sunlan 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 2314e5e  Tweak build script to ensure `GeneratedMetaMethod.DgmMethodRecord.loadDgmInfo` could find "dgminfo" file
2314e5e is described below

commit 2314e5e07b5cdc926b99e3483e4950c1b2e87e4c
Author: Daniel Sun <su...@apache.org>
AuthorDate: Mon Aug 30 02:47:33 2021 +0800

    Tweak build script to ensure `GeneratedMetaMethod.DgmMethodRecord.loadDgmInfo` could find "dgminfo" file
---
 buildSrc/src/main/groovy/org.apache.groovy-core.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildSrc/src/main/groovy/org.apache.groovy-core.gradle b/buildSrc/src/main/groovy/org.apache.groovy-core.gradle
index 4638c77..acf5b13 100644
--- a/buildSrc/src/main/groovy/org.apache.groovy-core.gradle
+++ b/buildSrc/src/main/groovy/org.apache.groovy-core.gradle
@@ -108,7 +108,7 @@ def dgmConverter = tasks.register("dgmConverter", DgmConverter) {
 }
 
 dependencies {
-    testRuntimeOnly files(dgmConverter)
+    runtimeOnly files(dgmConverter)
 }
 
 tasks.named('jar') {