Sample Apache ant project for begginers

rajeshkumar created the topic: Sample Apache ant project for begginers Pre- 1. clone the src code from – github.com/scmgalaxy/Javatest1 2. Create a proper build structure via ant Write a two…

Read more »

Apache Ant Interview Questions and Answers

rajeshkumar created the topic: Apache Ant Interview Questions and Answers Please provide answers for the all following questions here… www.scmgalaxy.com/scm/general/interview-…ons-and-answers.html Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

Read more »

Apache ant programming Exercise

rajeshkumar created the topic: Apache ant programming Exercise Apache ant programming excercise FIRST Download Ant from the Apache Software Foundation and install it. Exercise Question 1 Pre- 1. clone the…

Read more »

Apache Ant Interview Questions and Answers

Explain the concepts and capabilities of ANT? Explain how to start to use Ant and provide a “Hello World” ant script? Explain how to set classpath in ant? How does…

Read more »
comments-in-apache-ant

How 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! –> <!–…

Read more »
intellij-ant-integration

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 »
ant-clean-prepare-and-compile-tasks

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 »

Samples/Examples of the Ant copy task – Guide

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” tofile=”${temp.dir.web-inf}/managed-beans.xml” overwrite=”true” /> <copy file=”${resources.dir}/navigation-rules.xml” tofile=”${temp.dir.web-inf}/navigation-rules.xml” overwrite=”true” /> <copy file=”${resources.dir}/monitoring-managed-beans.xml” tofile=”${temp.dir.web-inf}/monitoring-managed-beans.xml” overwrite=”true” /> <copy file=”${resources.dir}/monitoring-navigation-rules.xml” tofile=”${temp.dir.web-inf}/monitoring-navigation-rules.xml” overwrite=”true”…

Read more »
apache-ant-flow-diagram-and-gui-tools

Flow Diagram and GUI tools for Apache Ant

Nurflugel AntScript Visualizer Link: http://www.nurflugel.com/webstart/AntScriptVisualizer About: Ant Script Visualizer is a program I’ve written to make visualizing how your Ant targets and scripts are related to one another. Ever take…

Read more »
apache-ant-complete-task-reference

Apache 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…

Read more »
ant_opts-in-ant-script

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…

Read more »
apache-ant-ppt

Power Point PPT: Apache Ant – Complete Guide

Power Point PPT: Apache Ant Apache Ant from Rajesh Kumar  

Read more »
ant-introduction-ppt

Power Point PPT: Introduction To Ant

Power Point PPT: Introduction To Ant Introduction To Ant from Rajesh Kumar  

Read more »

Power Point PPT: Using Ant To Build J2 Ee Application – Complete Guide

Power Point PPT: Using Ant To Build J2 Ee Application Using Ant To Build J2 Ee Applications from Rajesh Kumar  

Read more »
introduction-apache-ant

Power Point PPT: Introduction of Apache Ant

Power Point PPT: Introduction of Apache Ant Introduction To Ant from Rajesh Kumar

Read more »
ant-command-line-arguments

Understand Ant command line arguments with Examples

Several tasks take arguments that will be passed to another process on the command line. To make it easier to specify arguments that contain space characters, nested arg elements can…

Read more »
ant-builds-and-subversion

ANT Builds and Subversion (SVN) | Ant integration with Subversion guide

As I have mentioned in a previous blog entry, I have come to love using ANT in my development environment. One of the things that I like about it is…

Read more »

How to Use SVN Tasks with ANT ?

This post is about using ANT to perform some of the most common source-control related tasks such as export, tagging, and branching. I am using ANT version 1.7.0 and SVN…

Read more »

How to use ant Script to Reset BuildNumber?

To use this code, you need to have the file build.number containging: major.number=1 minor.number=0 hotfix.number=0 revision.number=0 continuous.number=0 Then the following 3 targets:   <taskdef resource=”net/sf/antcontrib/antlib.xml”/> <taskdef name=”unset” classname=”ise.antelope.tasks.Unset”/>     <target name=”initBuildNum” description=”Get…

Read more »
ant-ant-contrib

Ant : Ant-Contrib – Introduction and Installation Process/Guide

What is Ant-Contrib Tasks? The Ant-Contrib project provides a collection of tasks and types that extend Ant to work as a scripting language as well as a build tool. Many…

Read more »