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

jaikiran pushed a commit to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/1.9.x by this push:
     new 4e5b94a  bz-65110 Fix the ant-testutil-sources.jar generation
4e5b94a is described below

commit 4e5b94a8f618a5caf386634c057198c9196cf731
Author: Jaikiran Pai <[email protected]>
AuthorDate: Fri Jan 29 07:00:28 2021 +0530

    bz-65110 Fix the ant-testutil-sources.jar generation
---
 WHATSNEW  | 8 ++++++++
 build.xml | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/WHATSNEW b/WHATSNEW
index a76a026..7b9a3c0 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -1,6 +1,14 @@
 Changes from Ant 1.9.15 TO Ant 1.9.16
 =====================================
 
+Fixed bugs:
+-----------
+
+ * Fixes a bug where the ant-testutil-sources.jar that gets published to Maven
+   central repository didn't contain any source files.
+   Bugzilla Report 65110
+
+
 Changes from Ant 1.9.14 TO Ant 1.9.15
 =====================================
 
diff --git a/build.xml b/build.xml
index f9150a8..01cda3f 100644
--- a/build.xml
+++ b/build.xml
@@ -864,7 +864,7 @@
           description="--> creates the Apache Ant Test Utilities source jar">
     <mkdir dir="${build.lib-src}"/>
     <jar destfile="${build.lib-src}/${name}-testutil.jar"
-         basedir="${java.dir}">
+         basedir="${src.junit}">
       <patternset refid="useful.tests"/>
       <metainf dir="${build.dir}">
         <include name="LICENSE.txt"/>

Reply via email to