You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by eo...@apache.org on 2021/05/14 06:23:05 UTC

[bookkeeper] branch master updated: Include gradle files into the source artifact for releases, exclude site2/**

This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new bb8b1e0  Include gradle files into the source artifact for releases, exclude site2/**
bb8b1e0 is described below

commit bb8b1e0fee1585fcd166a27a3d91ec0e433dadcb
Author: Andrey Yegorov <86...@users.noreply.github.com>
AuthorDate: Thu May 13 23:22:55 2021 -0700

    Include gradle files into the source artifact for releases, exclude site2/**
    
    ### Motivation
    
    gradle files weren't included into the source artifact of the release
    site2/ was included.
    
    ### Changes
    
    Added gradle into the include pattern.
    Added site2 into the exclude patterns.
    
    
    
    Reviewers: Enrico Olivelli <eo...@gmail.com>
    
    This closes #2714 from dlg99/gradle-release
---
 bookkeeper-dist/src/assemble/src.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/bookkeeper-dist/src/assemble/src.xml b/bookkeeper-dist/src/assemble/src.xml
index 9d63cf2..cb61be4 100644
--- a/bookkeeper-dist/src/assemble/src.xml
+++ b/bookkeeper-dist/src/assemble/src.xml
@@ -31,6 +31,7 @@
         <include>**/LICENSE</include>
         <include>**/NOTICE</include>
         <include>**/pom.xml</include>
+        <include>**/*gradle*</include>
         <include>**/src/**</include>
         <include>**/conf/**</include>
         <include>**/bin/**</include>
@@ -59,6 +60,7 @@
         <exclude>dev/**</exclude>
         <!-- site -->
         <exclude>site/**</exclude>
+        <exclude>site2/**</exclude>
         <!-- jenkins -->
         <exclude>jenkins/**</exclude>
       </excludes>