This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch cyclonedx in repository https://gitbox.apache.org/repos/asf/ant.git
commit 011dcc52d155b4ba54a79ca49f57e35db42fbd58 Author: Stefan Bodewig <[email protected]> AuthorDate: Sat May 23 18:32:23 2026 +0200 add dependencies necessary for ant-antlibs-cyclonedx I've manually copied the antlib jar itself to lib/optional --- fetch.xml | 8 +++++++- lib/libraries.properties | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/fetch.xml b/fetch.xml index d223ecb8d..da0584647 100644 --- a/fetch.xml +++ b/fetch.xml @@ -388,8 +388,14 @@ Set -Ddest=LOCATION on the command line <f2 project="org.tukaani" archive="xz"/> </target> + <target name="cyclonedx-core-java" + description="load CycloneDX Core (Java) library" + depends="init"> + <f2 project="org.cyclonedx" archive="cyclonedx-core-java"/> + </target> + <target name="all" description="load all the libraries (except jython)" depends="antunit,ivy,logging,junit,junitlauncher,xml,networking,regexp,antlr,bcel,jdepend,bsf,debugging,script, - javamail,jakartamail,jspc,jai,xz,junit-engine-vintage,junit-engine-jupiter,netrexx"/> + javamail,jakartamail,jspc,jai,xz,junit-engine-vintage,junit-engine-jupiter,netrexx,cyclonedx-core-java"/> </project> diff --git a/lib/libraries.properties b/lib/libraries.properties index 15fe1994a..46351acc7 100644 --- a/lib/libraries.properties +++ b/lib/libraries.properties @@ -42,6 +42,7 @@ bsh.version=2.0b5 commons-net.version=3.10.0 commons-logging.version=1.1 commons-logging-api.version=${commons-logging.version} +cyclonedx-core-java.version=12.2.0 js.version=20.1.0 js-scriptengine.version=${js.version} # Note - When updating the hamcrest version here, make sure to also update the
