This is an automated email from the ASF dual-hosted git repository.
bodewig 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 0f14cb4 allow extra parameters for javadoc execution
0f14cb4 is described below
commit 0f14cb45e67e7a6480ba012c41ecd9c740fef972
Author: Stefan Bodewig <[email protected]>
AuthorDate: Mon Jun 9 22:45:09 2025 +0200
allow extra parameters for javadoc execution
---
build.properties | 3 +++
build.xml | 1 +
2 files changed, 4 insertions(+)
diff --git a/build.properties b/build.properties
index be317e7..5bb5111 100644
--- a/build.properties
+++ b/build.properties
@@ -46,6 +46,9 @@ javac.-target=1.2
javac.debug=on
+# javadoc properties
+javadoc.additionalparam=
+
# you really need a proper version in version.properties
artifact.version=0.1-SNAPSHOT
artifact.name=ant-${ant.project.name}
diff --git a/build.xml b/build.xml
index d4cebdb..fd15b79 100644
--- a/build.xml
+++ b/build.xml
@@ -236,6 +236,7 @@
windowtitle="${artifact.name} API"
doctitle="${artifact.name}"
failonerror="true"
+ additionalparam="${javadoc.additionalparam}"
verbose="false">
<packageset dir="src/main"/>
<classpath>