<path id="doccheck.path">
<pathelement location="${doccheck.home}"/>
</path>
+
+ <!-- PdfDoclet path -->
+ <property name="pdfdoclet.home" value="${ant.lib.dir}/pdfdoclet-1.0.2-all.jar"/>
+ <path id="pdfdoclet.path">
+ <pathelement location="${pdfdoclet.home}"/>
+ </path>
<!-- Hibernate paths -->
<!-- name of the file in the source directory containing
<target name="help-impl">
<echo>
+
+ Preparation:
+
+ deps: Download dependencies, this is necessary for using
+ any of the build targets.
+ clean-deps: Remove downloaded dependencies.
+
General build targets:
clean: Cleans up all build results (excluding the dist location).
<javadoc packagenames="*" author="true" version="true" private="yes"
source="${javac.source}" doclet="com.tarsec.javadoc.pdfdoclet.PDFDoclet"
docletpathref="pdfdoclet.path"
+ classpath="${module.classpath}"
+ sourcepath="${module.source.dir}"
additionalparam="-pdf ${module.pdfdoc.dir}/${module.name}.pdf">
- <fileset dir="${module.source.dir}">
+ <!-- fileset dir="${module.source.dir}">
<include name="**/*.java" />
- </fileset>
+ </fileset -->
</javadoc>
<echo
message="Unfortuantely, this target will have generated some errors but the pdf will still look fine" />