summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2002-11-29 08:46:15 +0000
committerJeremias Maerki <jeremias@apache.org>2002-11-29 08:46:15 +0000
commit49493e13477ea4a60c33de4c2f2250ce03f40f07 (patch)
treef19c46171a885fa48388bef25725c9dccf6f5b60 /build.xml
parentf2f670a0072fa34665d6cfec2ecfc055f5813081 (diff)
downloadxmlgraphics-fop-49493e13477ea4a60c33de4c2f2250ce03f40f07.tar.gz
xmlgraphics-fop-49493e13477ea4a60c33de4c2f2250ce03f40f07.zip
Fix generation of javadocs
Added optional target to generate a source jar for Eclipse git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195653 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 116a13bcd..d0c20b382 100644
--- a/build.xml
+++ b/build.xml
@@ -670,6 +670,12 @@ Sometimes ant gives out this warnings, but the build is finished without any pro
<package name="org.apache.fop.fonts"/>
<package name="org.apache.fop.fonts.*"/>
</group>
+ <classpath refid="libs-build-classpath"/>
+ <classpath>
+ <fileset dir="${lib.dir}">
+ <include name="ant*.jar"/>
+ </fileset>
+ </classpath>
</javadoc>
</target>
@@ -737,6 +743,18 @@ Sometimes ant gives out this warnings, but the build is finished without any pro
</target>
<!-- =================================================================== -->
+ <!-- Optional targets for Eclipse -->
+ <!-- =================================================================== -->
+ <target name="src-jar" depends="prepare-src" description="Generates a source zip for Eclipse">
+ <jar jarfile="${build.dir}/${name}-src.jar">
+ <fileset dir="${build.src}">
+ <include name="**/*.java"/>
+ </fileset>
+ </jar>
+
+ </target>
+
+ <!-- =================================================================== -->
<!-- Clean targets -->
<!-- =================================================================== -->
<target name="clean" depends="init" description="Cleans the build directory">