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 273dd95 make extension points more useful
273dd95 is described below
commit 273dd95c6c851740778f061887f74b71b1f29278
Author: Stefan Bodewig <[email protected]>
AuthorDate: Sun Apr 26 14:49:38 2026 +0200
make extension points more useful
---
build.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/build.xml b/build.xml
index fd15b79..4463778 100644
--- a/build.xml
+++ b/build.xml
@@ -55,12 +55,12 @@
<target name="ready-to-compile" depends="setup"/>
<target name="ready-to-test-with-junit" depends="compile-tests"/>
<target name="ready-to-test-with-antunit" depends="setup-for-antunit-tests"/>
- <target name="ready-to-package" depends="compile"/>
+ <target name="ready-to-package" depends="compile, check-for-NOTICE"/>
<target name="ready-to-distribute" depends="antlib"/>
<target name="package" depends="checksum-target-jar"
description="Package everything up"/>
- <target name="compile" depends="setup,resolve">
+ <target name="compile" depends="ready-to-compile,resolve">
<javac
srcdir="src/main"
destdir="${build.classes}"
@@ -80,7 +80,7 @@
directory</fail>
</target>
- <target name="antlib" depends="compile, check-for-NOTICE">
+ <target name="antlib" depends="ready-to-package">
<copy todir="${build.classes}">
<fileset dir="src/main" includes="**/*.xml,**/*.properties"/>
</copy>