1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<?xml version="1.0"?>
<project name="iText" default="help" basedir=".">
<target name="help" description="--> shows the help screen">
<echo>Using ANT for ${ant.project.name}</echo>
<echo />
<ant antfile="ant/compile.xml" inheritAll="false" />
<ant antfile="ant/site.xml" inheritAll="false" />
<ant antfile="ant/release.xml" inheritAll="false" />
<echo>release: making the all the files needed for a release (except tutorial)</echo>
</target>
<target name="compile">
<ant antfile="ant/compile.xml" inheritAll="false" target="compile" />
</target>
<target name="compile.rtf">
<ant antfile="ant/compile.xml" inheritAll="false" target="compile.rtf" />
</target>
<target name="compile.rups">
<ant antfile="ant/compile.xml" inheritAll="false" target="compile.rups" />
</target>
<target name="compile.toolbox">
<ant antfile="ant/compile.xml" inheritAll="false" target="compile.toolbox" />
</target>
<target name="jar">
<ant antfile="ant/compile.xml" inheritAll="false" target="jar" />
</target>
<target name="jar.rtf">
<ant antfile="ant/compile.xml" inheritAll="false" target="jar.rtf" />
</target>
<target name="jar.rups">
<ant antfile="ant/compile.xml" inheritAll="false" target="jar.rups" />
</target>
<target name="jar.toolbox">
<ant antfile="ant/compile.xml" inheritAll="false" target="jar.toolbox" />
</target>
<target name="clean">
<ant antfile="ant/release.xml" inheritAll="false" target="clean" />
</target>
<target name="release-1.4" description="--> builds a release after you have exported the src and www module from CVS">
<ant antfile="ant/release.xml" inheritAll="false" target="archive.src" />
<ant antfile="ant/compile.xml" inheritAll="false" target="jar" />
<ant antfile="ant/compile.xml" inheritAll="false" target="jar.rtf" />
<ant antfile="ant/site.xml" inheritAll="false" target="lowagie.com" />
<ant antfile="ant/release.xml" inheritAll="false" target="release.sf14" />
</target>
<target name="release-1.6" description="--> builds a release after you have exported the src and www module from CVS">
<ant antfile="ant/site.xml" inheritAll="false" target="docs.tar.gz" />
<ant antfile="ant/compile.xml" inheritAll="false" target="jar.rups" />
<ant antfile="ant/compile.xml" inheritAll="false" target="jar.toolbox" />
<ant antfile="ant/release.xml" inheritAll="false" target="release.jnlp" />
<ant antfile="ant/release.xml" inheritAll="false" target="release.sf16" />
<ant antfile="ant/release.xml" inheritAll="false" target="release.maven" />
</target>
<target name="archive.src">
<ant antfile="ant/release.xml" inheritAll="false" target="archive.src" />
</target>
<target name="asian.jar">
<ant antfile="ant/release.xml" inheritAll="false" target="asian.jar" />
</target>
<target name="lowagie.com">
<ant antfile="ant/site.xml" inheritAll="false" target="lowagie.com" />
</target>
<target name="javadoc">
<ant antfile="ant/site.xml" inheritAll="false" target="javadoc" />
</target>
<target name="docs.tar.gz">
<ant antfile="ant/site.xml" inheritAll="false" target="docs.tar.gz" />
</target>
<target name="tutorial">
<ant antfile="ant/site.xml" inheritAll="false" target="tutorial" />
</target>
<target name="tutorial.tar.gz">
<ant antfile="ant/site.xml" inheritAll="false" target="tutorial.tar.gz" />
</target>
</project>
|