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

commit 87bbf4f8a33a548697204d738809653b92567203
Author: Stefan Bodewig <[email protected]>
AuthorDate: Fri May 22 23:13:30 2026 +0200

    fix javadoc check
---
 build.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/build.xml b/build.xml
index 83419a6..6e8dd08 100644
--- a/build.xml
+++ b/build.xml
@@ -233,14 +233,14 @@
     <delete dir="${src.dist.dir}"/>
   </target>
 
-  <target name="javadoc_check">
+  <target name="javadoc_check" depends="setup-properties">
     <uptodate property="javadoc.notrequired"
-              targetfile="${build.javadoc}/package-list">
+              targetfile="${build.javadoc}/element-list">
       <srcfiles dir="src/main" includes="**/*.java,**/*.html"/>
     </uptodate>
   </target>
 
-  <target name="javadoc" depends="setup-properties, javadoc_check, resolve"
+  <target name="javadoc" depends="javadoc_check, resolve"
           description="--> creates the API documentation"
           unless="javadoc.notrequired">
     <mkdir dir="${build.javadoc}"/>

Reply via email to