Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities
Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities Ant has three environment variables that you can use to set its default behavior. • ANT_ARGS Set this variable to include those options you use...
View ArticleApache Ant - A Complete TASK Reference
Apache Ant Task: zip Description: Creates a zipfile. The basedir attribute is the reference directory from where to zip. Note that file permissions will not be stored in the resulting zipfile. It is...
View ArticleIntegrating Subversion Into Your Ant Build
SVNAnt SVNAnt is an Ant task allowing you to interact with Subversion within the convenience of your Ant build script. No more writing custom scripts to get the revision of your repository to tag your...
View ArticleFlow Diagram and GUI tools for Apache Ant
Nurflugel AntScript Visualizer Link: http://www.nurflugel.com/webstart/AntScriptVisualizerAbout:Ant Script Visualizer is a program I've written to make visualizing how your Ant targets and scripts are...
View ArticleSamples of the Ant copy task
Samples of the Ant copy task<copy file="${resources.dir}/MANIFEST.MF" tofile="${temp.dir.meta-inf}/MANIFEST.MF" overwrite="true" /><copy file="${resources.dir}/managed-beans.xml"...
View ArticleSimple Ant Example - clean, prepare, and compile tasks
Sample Ant clean, prepare, and compile tasks <target name="clean"> <echo>=== CLEAN ===</echo> <delete failonerror="false"> <fileset dir="${dest.dir}" includes="**/*"/>...
View ArticleA sample Ant build script that builds a WAR file
A sample Ant build script that builds a WAR file<project name="MyWebApplication" basedir=".." default="install"> <!-- project-specific variables --> <property name="jsp.dir.name"...
View ArticleIntelliJ/Ant integration
IntelliJ/Ant integrationBy Alvin J. Alexander, devdaily.comThe fact that IntelliJ is off-the-shelf ready to work with Ant is a great, great feature. It's also simple to configure and use.Assuming that...
View ArticleHow to put comment in Ant | Comments in Apache Ant
How to put comment in Ant | Comments in Apache Ant Method 1: <!-- Comments are just as important in buildfiles, do not --> <!-- avoid writing them! --> <!-- Example build file for "Ant:...
View Article