This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ant-antlibs-cyclonedx.git
The following commit(s) were added to refs/heads/main by this push:
new f76f840 I don't want provided or test dependencies in fat-jar
f76f840 is described below
commit f76f840afd19982f0c4335b2d681beed55841cb0
Author: Stefan Bodewig <[email protected]>
AuthorDate: Fri May 29 14:46:33 2026 +0200
I don't want provided or test dependencies in fat-jar
---
build.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/build.xml b/build.xml
index 2f42249..cc0fede 100644
--- a/build.xml
+++ b/build.xml
@@ -438,5 +438,11 @@ under the License.
</create-tarball-boms>
</target>
+ <target name="fetch-dependencies" depends="ivy.xml"
xmlns:ivy="antlib:org.apache.ivy.ant">
+ <ivy:resolve file="${target.ivy.xml}"/>
+ <ivy:retrieve type="jar" conf="default"
+ pattern="${build.deps}/[artifact]-[revision].[ext]"/>
+ </target>
+
<import file="common/build.xml"/>
</project>