You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by sn...@apache.org on 2021/10/20 09:22:06 UTC

[nutch] branch master updated: NUTCH-2862 Do not include Ivy jar in source release package

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 351dc50  NUTCH-2862 Do not include Ivy jar in source release package
     new 310bc60  Merge pull request #699 from sebastian-nagel/NUTCH-2862-ivy-jar-not-in-source-package
351dc50 is described below

commit 351dc5097bc91ddfedfd2553b6280a864dca0d0b
Author: Sebastian Nagel <sn...@apache.org>
AuthorDate: Mon Oct 18 10:25:38 2021 +0200

    NUTCH-2862 Do not include Ivy jar in source release package
---
 build.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build.xml b/build.xml
index 1180dea..fe823bf 100644
--- a/build.xml
+++ b/build.xml
@@ -938,6 +938,7 @@
       destfile="${src.dist.version.dir}.tar.gz">
       <tarfileset dir="${src.dist.version.dir}" mode="664" prefix="${final.name}">
         <exclude name="src/bin/*" />
+        <exclude name="ivy/ivy*.jar" />
         <include name="**" />
       </tarfileset>
       <tarfileset dir="${src.dist.version.dir}" mode="755" prefix="${final.name}">
@@ -970,6 +971,7 @@
      destfile="${src.dist.version.dir}.zip">
    <zipfileset dir="${src.dist.version.dir}" filemode="664" prefix="${final.name}">
        <exclude name="src/bin/*" />
+        <exclude name="ivy/ivy*.jar" />
        <include name="**" />
    </zipfileset>
    <zipfileset dir="${src.dist.version.dir}" filemode="755" prefix="${final.name}">