rem build with ANT rem Path mush have been previously set up so J:\Program Files (x86)\apache-ant-1.8.2\bin is included. Rem in a simple case, you just natigate to the directory where your rem build.xml file is, rem composed by your IDE, and type: ANT build rem here is more complex example: rem -v = verbose rem -Duser.home=W: = set System property user.home to W: rem -f build2.xml = use ANT script build2.xml (default is build.xml) rem build = run the "build" target, (a stage in completion) rem i.e. run compiles, jar builds etc. all the way to the build stage. ant.bat -v -Duser.home=W: -f build2.xml build