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/02/24 11:24:00 UTC

[groovy] branch GROOVY_3_0_X updated: ignore non-stable versions when using dependencyUpdates

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

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


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new 6b55f30  ignore non-stable versions when using dependencyUpdates
6b55f30 is described below

commit 6b55f308da6ca251793effb3fc0fbd069e9c0e8d
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Feb 24 15:38:38 2022 +1000

    ignore non-stable versions when using dependencyUpdates
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 8a11181..0280d2c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -482,7 +482,7 @@ project.afterEvaluate {
     }
 }
 
-def UNSTABLE = /^([\d.-]+(alpha|beta|rc|ea|b|m)[\d.-]+(groovy[\d.-]+)?|2.4.0-b[\d.]+|200\d{5}(\.\d{6})?)$/
+def UNSTABLE = /^([\d.-]+(alpha|beta|rc|ea|b|m)[\d.-]+(groovy[\d.-]+)?|2.4.0-b[\d.]+|200\d{5}(\.\d{6})?|2004-03-19)$/
 // ignore non-stable releases
 tasks.named("dependencyUpdates")?.configure {
     gradleReleaseChannel = 'current'