This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release18.12 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release18.12 by this push: new a61fe71 Fixed: svg files not removed on clean (OFBIZ-11976) a61fe71 is described below commit a61fe713f2417c889e67a3f6c3c512171fc442bb Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Sun Aug 23 17:41:45 2020 +0200 Fixed: svg files not removed on clean (OFBIZ-11976) Files like birt/src/docs/asciidoc/images/OFBiz-Logo.svg, in many plugins, don't get removed on clean. I simply missed to clean them in pluginAsciidoc Gradle task (OFBIZ-10677) Thanks: Alex Bodnaru for report --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 6aa4992..7ad9591 100644 --- a/build.gradle +++ b/build.gradle @@ -631,6 +631,7 @@ task generateAllPluginsDocumentation(group: docsGroup, doLast { println "Documentation generated for plugin ${component.name}" } } mustRunAfter deleteAllPluginsDocumentation + doLast { delete "${component}/src/docs/asciidoc/images/OFBiz-Logo.svg" } } dependsOn pluginAsciidoc