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

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


The following commit(s) were added to refs/heads/master by this push:
     new 879c513  Fix for lincense files and contrib folder during release
879c513 is described below

commit 879c513a8d58ebbaa37342c532ec220ee1ab3939
Author: Andor Molnar <[email protected]>
AuthorDate: Wed Feb 27 12:30:08 2019 +0100

    Fix for lincense files and contrib folder during release
    
    This patch fixes the following issues that have been experiences in 
3.4.14-rc3:
    - JLine license file is missing,
    - jsr305 jar files is included in the release, but should be excluded,
    
    This is going to backported to 3.5 and 3.4 branches too.
    
    Author: Andor Molnar <[email protected]>
    
    Reviewers: [email protected]
    
    Closes #835 from anmolnar/fix_license_contrib_master and squashes the 
following commits:
    
    bbe600f32 [Andor Molnar] jline-0.9.94 is not needed on master
    206a5603a [Andor Molnar] Fix for lincese files and contrib folder during 
release
---
 build.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 0b4fffe..1109e06 100644
--- a/build.xml
+++ b/build.xml
@@ -799,7 +799,9 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
         <fileset dir="${lib.dir}">
           <exclude name="**/ivy*.jar" />
         </fileset>
-        <fileset dir="${ivy.lib}"/>
+        <fileset dir="${ivy.lib}">
+          <exclude name="**/jsr305*.jar" />
+        </fileset>
       </copy>
 
       <subant target="package">

Reply via email to