From 8e4ef4976d2ffe6a67d0fc3772fc40e5453db39e Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Fri, 8 Nov 2024 10:19:57 -0500 Subject: [PATCH] Add back logic for groovy snapshot support --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 490c4d6506b..4b0803a21f4 100644 --- a/build.gradle +++ b/build.gradle @@ -46,6 +46,12 @@ allprojects { if(isSnapshot) { maven { url = 'https://repo.grails.org/grails/libs-snapshots-local' } } + if(groovyVersion && groovyVersion.endsWith('-SNAPSHOT')) { + maven { + name = 'ASF Snapshot repo' + url = 'https://repository.apache.org/content/repositories/snapshots' + } + } } configurations {