diff options
author | William Victor Mote <vmote@apache.org> | 2003-05-05 07:10:24 +0000 |
---|---|---|
committer | William Victor Mote <vmote@apache.org> | 2003-05-05 07:10:24 +0000 |
commit | 52660ac879b5fb8d42b7a4791d0d60074dad4bf9 (patch) | |
tree | 396f72510b3293a5f3b4279b0429c98aca7beb7e /build.xml | |
parent | c6876a7da2b1d3a6f4f52448c7cffb5770781383 (diff) | |
download | xmlgraphics-fop-52660ac879b5fb8d42b7a4791d0d60074dad4bf9.tar.gz xmlgraphics-fop-52660ac879b5fb8d42b7a4791d0d60074dad4bf9.zip |
Fix javadoc build error.
Add to description of "package" target to explain that it is the default.
Add javadoc to the gump target.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@196398 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -383,7 +383,7 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- copy src files --> <copy todir="${build.src}" filtering="yes"> <fileset dir="${src.dir}" - includes="**/*.java" + includes="**/*.java,*.html" excludes="java-*/**,**/${jimi},**/${jai},**/${tiff},**/${xsltransform},**/${trax},**/apps/TraxInputHandler.java"/> <filterset> <filter token="XSLFO-STD" value="${xslfo.std}"/> @@ -571,7 +571,7 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- =================================================================== --> <!-- Creates the class package --> <!-- =================================================================== --> - <target name="package" depends="compile,hyphenation" description="Generates the jar files"> + <target name="package" depends="compile,hyphenation" description="Generates the jar files (default target)"> <echo message="Creating the jar file ${build.dir}/${name}.jar"/> <tstamp> @@ -777,7 +777,7 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- =================================================================== --> <!-- Special target for Gump --> <!-- =================================================================== --> - <target name="gump" depends="all"/> + <target name="gump" depends="all, javadocs"/> </project> |