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 2020/12/05 00:37:52 UTC

[groovy] branch master updated: ensure no dup entries in doc zip

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


The following commit(s) were added to refs/heads/master by this push:
     new da0b9c9  ensure no dup entries in doc zip
da0b9c9 is described below

commit da0b9c969a64266d9286ec7de7f8ce86e066bcda
Author: Paul King <pa...@asert.com.au>
AuthorDate: Sat Dec 5 10:37:23 2020 +1000

    ensure no dup entries in doc zip
---
 buildSrc/src/main/groovy/org.apache.groovy-distribution.gradle | 1 +
 1 file changed, 1 insertion(+)

diff --git a/buildSrc/src/main/groovy/org.apache.groovy-distribution.gradle b/buildSrc/src/main/groovy/org.apache.groovy-distribution.gradle
index d9787bb..63eee5e 100644
--- a/buildSrc/src/main/groovy/org.apache.groovy-distribution.gradle
+++ b/buildSrc/src/main/groovy/org.apache.groovy-distribution.gradle
@@ -163,6 +163,7 @@ def distDoc = tasks.register('distDoc', Zip) {
     //dependsOn: doc
     archiveBaseName = 'apache-groovy'
     archiveAppendix = 'docs'
+    duplicatesStrategy = DuplicatesStrategy.EXCLUDE
     into("groovy-${project.version}") {
         with distributionExtension.docSpec
     }