소스 검색

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 <andor@apache.org>

Reviewers: andor@apache.org

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
Andor Molnar 6 년 전
부모
커밋
879c513a8d
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      build.xml

+ 3 - 1
build.xml

@@ -799,7 +799,9 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
         <fileset dir="${lib.dir}">
         <fileset dir="${lib.dir}">
           <exclude name="**/ivy*.jar" />
           <exclude name="**/ivy*.jar" />
         </fileset>
         </fileset>
-        <fileset dir="${ivy.lib}"/>
+        <fileset dir="${ivy.lib}">
+          <exclude name="**/jsr305*.jar" />
+        </fileset>
       </copy>
       </copy>
 
 
       <subant target="package">
       <subant target="package">