| <?xml version="1.0" encoding="UTF-8"?> | |
| <project name="JavaDoc"> | |
| <!-- Here are expected the following properties: | |
| sourceCodeDirectories = Semi-colon separated directories which holds the classes where the Javadocs will | |
| be generated from. | |
| excludePackages = Packages which are to be excluded from the generated Javadoc document. | |
| javadocOutputDirectory = The directory where the generated Javadocs will be placed. | |
| javaAPIPackageLocationDirectory = The directory location of the API reference file. The file must | |
| be named package-list. | |
| javaAPIURLDirectory = The URL of the Java API. | |
| --> | |
| <target name="javadoc"> | |
| <javadoc packagenames="*.*" | |
| sourcepath="${sourceCodeDirectories}" | |
| excludepackagenames="${excludePackages}" | |
| defaultexcludes="yes" | |
| destdir="${javadocOutputDirectory}" | |
| author="false" | |
| version="true" | |
| use="true" | |
| windowtitle="App Validator Javadoc"> | |
| <link offline="true" href="${javaAPIURLDirectory}" packagelistloc="${javaAPIPackageLocationDirectory}" /> | |
| <doctitle><![CDATA[<h1>App Validator</h1>]]></doctitle> | |
| <bottom><![CDATA[<i>Copyright © 2011, Motorola Mobility, Inc. All rights reserved.</i>]]></bottom> | |
| </javadoc> | |
| </target> | |
| </project> |