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:57:04 UTC

[groovy] branch master updated (c51a9f3fe3 -> a60a242518)

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

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


    from c51a9f3fe3 improve `getText()` for `ASTNode` and `BytecodeExpression`
     new 03f2a90dd1 minor build refactor
     new c9b02baa79 GROOVY-10841: Bump picocli to 4.7.0
     new a60a242518 minor build refactor

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] 02/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 master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit c9b02baa7929ee41c321e2a3833af3380b5c9534
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 286ab89d29..b2ae702613 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] 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 master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit 03f2a90dd17ea355f54fa38788209da23c79749e
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 12:04:04 2022 +1000

    minor build refactor
---
 .../groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy    | 2 +-
 subprojects/binary-compatibility/build.gradle                           | 1 +
 subprojects/performance/build.gradle                                    | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

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 {
diff --git a/subprojects/binary-compatibility/build.gradle b/subprojects/binary-compatibility/build.gradle
index 580cd52463..2c351f8381 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',


[groovy] 03/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 master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit a60a242518ac07430c09b22866bbc33f42f6c01d
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Nov 16 13:56:48 2022 +1000

    minor build refactor
---
 subprojects/performance/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/performance/build.gradle b/subprojects/performance/build.gradle
index d1a517f05f..5db4ee9a4b 100644
--- a/subprojects/performance/build.gradle
+++ b/subprojects/performance/build.gradle
@@ -20,7 +20,7 @@ plugins {
     id 'org.apache.groovy-performance'
 }
 
-tasks.named('performanceTests').configure {
+tasks.named('performanceTests') {
     versions '2.5.19',
             '3.0.13',
             '4.0.6',