For release 1.2.4 the Javadoc build fails for the command "ant -f javadoc.xml html". Attached is the command prompt output.
Command prompt output
Ah, indeed. The target refers to a folder with Doclets, not Taglets (or not anymore). I fixed it in Git, and will be part of 1.2.5. The patch is simple, and you can apply it yourself manually (as wrorkaround):
diff --git a/javadoc.xml b/javadoc.xml index 8d06f9a..5af2f23 100755 --- a/javadoc.xml +++ b/javadoc.xml @@ -185,21 +185,11 @@ <target name="compileTaglets" id="user-content-compileTaglets" depends="check, compileTaglets.MacOSX, compileTaglets.Other"></target>
<target name="compileTaglets.MacOSX" id="user-content-compileTaglets.MacOSX" if="isMacOsX"></target>
<target name="compileTaglets.Other" id="user-content-compileTaglets.Other" unless="isMacOsX"></target>
Patch to fix this bug.
I have attached the full patch.
Command prompt output
Ah, indeed. The target refers to a folder with Doclets, not Taglets (or not anymore). I fixed it in Git, and will be part of 1.2.5. The patch is simple, and you can apply it yourself manually (as wrorkaround):
diff --git a/javadoc.xml b/javadoc.xml
index 8d06f9a..5af2f23 100755
--- a/javadoc.xml
+++ b/javadoc.xml
@@ -185,21 +185,11 @@
<target name="compileTaglets" id="user-content-compileTaglets" depends="check, compileTaglets.MacOSX, compileTaglets.Other"></target>
<target name="compileTaglets.MacOSX" id="user-content-compileTaglets.MacOSX" if="isMacOsX"></target>
<javac srcdir="src" destdir="src" includes="*Taglet.java" debug="on" optimize="off">
</javac>
<target name="compileTaglets.Other" id="user-content-compileTaglets.Other" unless="isMacOsX"></target>
<javac srcdir="src/main" destdir="src/main" includes="net/sf/cdk/tools/**/*.java" debug="on" optimize="off">
<classpath></classpath></javac>
Patch to fix this bug.
I have attached the full patch.