#21
authorVyacheslav Tyutyunkov <tyutyunkov@gmail.com>
Mon, 25 Mar 2013 05:21:55 +0000 (12:21 +0700)
committerVyacheslav Tyutyunkov <tyutyunkov@gmail.com>
Mon, 25 Mar 2013 05:21:55 +0000 (12:21 +0700)
jejdb/build.xml

index 7e2edf6..8d04a01 100644 (file)
         <ant target="compile" inheritall="true" inheritrefs="true"/>
     </target>
 
+    <target name="build.doc" depends="init" description="Build JavaDocs for JEJDB">
+        <mkdir dir="${distr.doc}"/>
+        <javadoc destdir="${distr.doc}"
+                 author="true"
+                 version="true"
+                 encoding="utf-8"
+                 charset="utf-8"
+                 docencoding="utf-8"
+                 private="false"
+                 use="true"
+                 breakiterator="true"
+                 windowtitle="JEJDB Doc">
+            <fileset dir="${source.dir}" includes="**/*.java"/>
+            <classpath>
+                <path refid="lib.bson.classpath"/>
+            </classpath>
+        </javadoc>
+    </target>
+
 </project>
\ No newline at end of file