summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-05-05 07:10:24 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-05-05 07:10:24 +0000
commit52660ac879b5fb8d42b7a4791d0d60074dad4bf9 (patch)
tree396f72510b3293a5f3b4279b0429c98aca7beb7e /build.xml
parentc6876a7da2b1d3a6f4f52448c7cffb5770781383 (diff)
downloadxmlgraphics-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.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index cac8c2be7..c11aec043 100644
--- a/build.xml
+++ b/build.xml
@@ -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>