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 d5afa5137358bcc8d3abbd9ff0f2ef0e7b0bfb53 Author: Paul King <[email protected]> AuthorDate: Tue Sep 6 20:01:59 2022 +1000 GROOVY-10748: logback-classic 1.3.0 and 1.4.0 breaks on Groovy (we override the transitive dependency from testng which is bundled in the standard installation) --- subprojects/groovy-testng/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subprojects/groovy-testng/build.gradle b/subprojects/groovy-testng/build.gradle index 61e09eacf3..5b8a963192 100644 --- a/subprojects/groovy-testng/build.gradle +++ b/subprojects/groovy-testng/build.gradle @@ -29,9 +29,10 @@ dependencies { exclude(group: 'org.apache.ant', module: 'ant') exclude(group: 'org.yaml', module: 'snakeyaml') } + runtimeOnly "org.slf4j:slf4j-api:$versions.slf4j" testImplementation projects.groovyTest } groovyLibrary { optionalModule() -} \ No newline at end of file +}
