This is an automated email from the git hooks/post-receive script.

ben pushed a commit to branch patch-queue/master
in repository rsyntaxtextarea.

commit f358950903db0ba8624595119277e5b8f61ffc56
Author: Benjamin Mesing <[email protected]>
Date:   Mon Oct 7 21:18:31 2013 +0200

    Modified build.xml for debian specific settings
    - added clean target
    - build java doc
    - link javadoc to system path
---
 build.xml |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/build.xml b/build.xml
index e118d20..229e5c6 100644
--- a/build.xml
+++ b/build.xml
@@ -45,7 +45,7 @@
 
 
        <!-- Creates the jar file. -->
-       <target name="make-jar" depends="compile"
+       <target name="make-jar" depends="compile,make-javadoc"
                        description="Create RSyntaxTextArea jar">
                <delete includeEmptyDirs="true" quiet="true" dir="${dist-dir}"/>
                <mkdir dir="${dist-dir}"/>
@@ -100,12 +100,18 @@
        <!-- Builds the javadoc.  -->
        <target name="make-javadoc" depends="compile">
                <javadoc  destdir="${doc-dir}" author="true" version="true"
-                               breakiterator="yes">
+                               breakiterator="yes"  
windowtitle="RSyntaxTextArea API" doctitle="RSyntaxTextArea - ${version}">
                        <packageset dir="${source-dir}" defaultexcludes="yes">
                                <include name="org/**"/>
                        </packageset>
+                       <link href="file:///usr/share/doc/default-jdk-doc/api" 
packagelistLoc="/usr/share/doc/default-jdk/api/" />
                </javadoc>
        </target>
 
 
+       <target name="clean">
+               <delete dir="${class-dir}" />
+               <delete dir="${dist-dir}" />
+               <delete dir="${doc-dir}" />
+       </target>
 </project>

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/rsyntaxtextarea.git

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to