This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 1988b774f3938799a63d6d16553b37592a3227bc Author: James Daugherty <[email protected]> AuthorDate: Thu Apr 24 13:52:14 2025 -0400 disable the jar file for grails-doc since it generates documentation and does not publish code --- grails-doc/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/grails-doc/build.gradle b/grails-doc/build.gradle index 26d02baf16..fb64ef44d5 100644 --- a/grails-doc/build.gradle +++ b/grails-doc/build.gradle @@ -292,3 +292,8 @@ artifacts { archives dist } +// the groovy plugin is applied to this project, but we do not build a jar file since +// the dependencies are only used for resolving versions from the bom +tasks.withType(Jar).configureEach { + it.enabled = false +} \ No newline at end of file
