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:10:58 UTC

[groovy] branch GROOVY_4_0_X updated (2c0b64caf7 -> 2c8e326332)

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

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


    from 2c0b64caf7 improve `getText()` for `ASTNode` and `BytecodeExpression`
     new 20a38b311b minor build refactor
     new cb0705bf39 minor build refactor
     new 2c8e326332 GROOVY-10841: Bump picocli to 4.7.0

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy    | 2 +-
 subprojects/binary-compatibility/build.gradle                           | 1 +
 subprojects/performance/build.gradle                                    | 2 +-
 versions.properties                                                     | 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)


[groovy] 03/03: GROOVY-10841: Bump picocli to 4.7.0

Posted by pa...@apache.org.
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 2c8e3263326e851a0ad748d8400049125de73000
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 12:10:36 2022 +1000

    GROOVY-10841: Bump picocli to 4.7.0
---
 versions.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/versions.properties b/versions.properties
index c0716e35ec..b6ee8faa76 100644
--- a/versions.properties
+++ b/versions.properties
@@ -41,7 +41,7 @@ junit=4.13.2
 log4j=1.2.17
 log4j2=2.19.0
 openbeans=1.0.2
-picocli=4.6.3
+picocli=4.7.0
 qdox=1.12.1
 slf4j=2.0.3
 xmlunit=1.6


[groovy] 02/03: minor build refactor

Posted by pa...@apache.org.
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 {


[groovy] 01/03: minor build refactor

Posted by pa...@apache.org.
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 20a38b311bad7eac19756bf2a7ae7619b4906ba1
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 12:04:04 2022 +1000

    minor build refactor
---
 subprojects/binary-compatibility/build.gradle | 1 +
 subprojects/performance/build.gradle          | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/subprojects/binary-compatibility/build.gradle b/subprojects/binary-compatibility/build.gradle
index 002b054162..b2a1425761 100644
--- a/subprojects/binary-compatibility/build.gradle
+++ b/subprojects/binary-compatibility/build.gradle
@@ -42,6 +42,7 @@ rootProject.allprojects {
             def baseline = thisProject.configurations.create("${taskName}Baseline") {
                 dependencies.add(thisProject.dependencies.create(baselineCoords))
             }
+            baseLine.resolutionStrategy.disableDependencyVerification()
             def singleProjectCheck = thisProject.tasks.register(taskName, JapicmpTask) {
                 oldArchives.from(baseline)
                 newArchives.from(files(tasks.named("jarjar")))
diff --git a/subprojects/performance/build.gradle b/subprojects/performance/build.gradle
index 9bdb3c9a3a..d1a517f05f 100644
--- a/subprojects/performance/build.gradle
+++ b/subprojects/performance/build.gradle
@@ -20,7 +20,7 @@ plugins {
     id 'org.apache.groovy-performance'
 }
 
-performanceTests {
+tasks.named('performanceTests').configure {
     versions '2.5.19',
             '3.0.13',
             '4.0.6',