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 03:58:52 UTC

[groovy] branch master updated: minor build refactor

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 d38f6b6c3e minor build refactor
d38f6b6c3e is described below

commit d38f6b6c3e62605ab226514cfbe278243dbd94fc
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 13:58:45 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 0d4a399893..5164463509 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("perf_groovy_$version") { Configuration it ->
+        def groovyConf = configurations.create("perfGroovy$version") { Configuration it ->
             it.canBeResolved = true
             it.canBeConsumed = false
             it.resolutionStrategy {