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

asf-gitbox-commits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-common.git


The following commit(s) were added to refs/heads/master by this push:
     new 0a4c07a  allow fat-dist Ivy configuraton to be configured
0a4c07a is described below

commit 0a4c07a07a44bb60f90e368f7851da3deee3e35b
Author: Stefan Bodewig <[email protected]>
AuthorDate: Sat May 30 08:03:24 2026 +0200

    allow fat-dist Ivy configuraton to be configured
---
 build.properties | 2 ++
 fetch.xml        | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/build.properties b/build.properties
index 879572f..ecda625 100644
--- a/build.properties
+++ b/build.properties
@@ -64,6 +64,8 @@ dist.base.source=${dist.base}/source
 dist.base.binaries=${dist.base}/binaries
 bin.dist.dir=dist-bin
 src.dist.dir=dist-src
+# Ivy configuration to retrieve when building the fat-distribution jar
+fat-dist.fetch.config=*
 
 
 # junit test properties
diff --git a/fetch.xml b/fetch.xml
index 8228226..18d5268 100644
--- a/fetch.xml
+++ b/fetch.xml
@@ -19,7 +19,7 @@
 
   <target name="fetch-dependencies" depends="ivy.xml">
     <ivy:resolve file="${target.ivy.xml}"/>
-    <ivy:retrieve type="jar"
+    <ivy:retrieve type="jar" conf="${fat-dist.fetch.config}"
                   pattern="${build.deps}/[artifact]-[revision].[ext]"/>
   </target>
 

Reply via email to