| IntelliJ/Ant integration |
| Written by Rajesh Kumar | |||||||||
|
IntelliJ/Ant integration By Alvin J. Alexander, devdaily.com The 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 already know how to use Ant, and you have a build.xml file ready to go, just follow these steps to (a) configure your build script to run from within IntelliJ, and (b) run Ant:
It's really that simple. The worst problem I've run into so far is that when I work on projects on multiple computer systems, my build scripts rely on an environment parameter named ANT_HOST_NAME existing. So, when my build script failed the first time, I said "Oh, dummy Al, you need to set your ANT_HOST_NAME environment parameter. Once I did this and restarted IntelliJ, the Ant build process worked like a champ. Kudos, dear IntelliJ developers. Great product feature! Best Example of <Copy> Type 1: <copy todir="${Temp}/uaw/Uaw_compilescripts" overwrite="true" failonerror="false"> <fileset dir="${SVNCheckout}/scripts/compilescripts" includes="BuildSh,Compsh,vsamc,buildc.sh,script,compl2,main.sh,makefile,makepl1,script" /> </copy> Type 2: <copy todir="${Temp}/uaw/Uaw_compilescripts" overwrite="true" failonerror="false"> <fileset dir="${SVNCheckout}/scripts/compilescripts" includes="BuildSh,Compsh,vsamc,buildc.sh,script,compl2,main.sh,makefile,makepl1,script" /> </copy> Type 3: <copy todir="${Temp}/uaw/Uaw_compilescripts" overwrite="true" failonerror="false"> <fileset dir="${SVNCheckout}/scripts/compilescripts”> <include name="BuildSh"/> <include name="Compsh"/> <include name="vsamc"/> </fileset> </copy> Type4: <copy todir="${Temp}/uaw/Uaw_compilescripts" overwrite="true" failonerror="false"> <fileset dir="${SVNCheckout}/scripts/compilescripts"> <includesfile name="${List}/Uaw_compilescripts_list.txt"/> </fileset> </copy>
Powered by !JoomlaComment 3.26
3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved."
|





