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-ivy.git
The following commit(s) were added to refs/heads/master by this push:
new e82f1882 Revert "move sbomLink element to cyclonedx namespace"
e82f1882 is described below
commit e82f1882b1fdc580fc1c5dcd0935115ad963a747
Author: Stefan Bodewig <[email protected]>
AuthorDate: Tue Aug 18 09:04:05 2026 +0200
Revert "move sbomLink element to cyclonedx namespace"
This reverts commit 77249ff373e219d7a7ef7f74c62961a7ae7ad0fa.
---
build-release.xml | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/build-release.xml b/build-release.xml
index 4dc27b8b..f2f39f6b 100644
--- a/build-release.xml
+++ b/build-release.xml
@@ -1019,23 +1019,22 @@
<target name="bin-tarball-sboms"
depends="snapshot-bin,prepare-distribution-sboms"
- xmlns:cdx="antlib:org.apache.ant.cyclonedx"
if="jdk9+">
<create-tarball-boms binsrc="bin"
binarysource="Binary Distribution">
<component>
- <cdx:sbomLink>
+ <sbomLink>
<file
file="${artifacts.build.dir}/jars/ivy-${build.version}.cdx.json"/>
- </cdx:sbomLink>
+ </sbomLink>
<file file="${artifacts.build.dir}/jars/${final.name}"/>
</component>
</create-tarball-boms>
<create-tarball-boms binsrc="bin-with-deps"
binarysource="Binary Distribution with Dependencies">
<component>
- <cdx:sbomLink>
+ <sbomLink>
<file
file="${artifacts.build.dir}/jars/ivy-${build.version}.cdx.json"/>
- </cdx:sbomLink>
+ </sbomLink>
<file file="${artifacts.build.dir}/jars/${final.name}"/>
</component>
</create-tarball-boms>