How to run ant build in intellij? – IntelliJ/Ant integration Guide
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 you…
Read more »Simple 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=”**/*”/> </delete> <delete dir=”${temp.dir}” /> </target> <target name=”prepare” depends=”clean”> <echo>=== PREPARE ===</echo> <mkdir dir=”${dest.dir}”…
Read more »How to Integrate Subversion Into Your Ant Build ? – Step by step guide
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…
Read more »