You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/11/16 02:11:00 UTC

[groovy] 02/03: minor build refactor

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

paulk pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit cb0705bf39f3deddff98f87df5ddac2f7b5213cc
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 12:10:26 2022 +1000

    minor build refactor
---
 .../groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy b/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy
index 5b4f945ae3..0d4a399893 100644
--- a/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy
+++ b/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy
@@ -73,7 +73,7 @@ class PerformanceTestsExtension {
 
     void version(String v) {
         def version = v.replace('.', '_')
-        def groovyConf = configurations.create("groovyVersion$version") { Configuration it ->
+        def groovyConf = configurations.create("perf_groovy_$version") { Configuration it ->
             it.canBeResolved = true
             it.canBeConsumed = false
             it.resolutionStrategy {