Thursday, September 27, 2012

Get Familiar with Apache Ant Commands :-)

How to do following tasks in ant file?
  1. Make zip file.
  2. Run command.
  3. Copy files to remote machine.
  4. Run commands on Remote Linux machine.
  5. Open an input box and respond to input value.
  6. Make an ant call.
Answers:

1. Make zip file:

Following is the xml for making zip file in ant:

1 <zip destfile='${destination.folder}/zipName.zip'>
2      <fileset dir= '${Source.folder}' />
3 </zip>
In here "destfile" is the name and location of the created zip file. Inside fileset tag the dir attricute is used to specify source folder form where all files will be zipped.

2. Run commands:

Here I will show you how to start tomcat in ant file to demonstrate how to run commands in ant. Following is the xml for this:

1 <exec dir='${tomcat.home}/bin' executable='cmd' os='Windows XP'>
2      <arg line='/c startup.bat'/>
3 </exec>
Here "${tomcat.home}" is the path of the tomcat folder. The command is given in "<arg>" tag in "line" attribute.

Note: To run following commands you will need JSCH jar.

3. Copy files to remote machine:

1 <copy file='${source.folder.file} ' todir='\\remote\path'>
2 </copy>
To copy files on remote machine that supports SCP use following tag:

1 <scp file='${source.folder.file} ' todir='${remote.user}@${remote.host}:${remote.path.where.to.do.copy}'
2        password='${remote.password}' trust='true'>
3 </scp>
In above both commands "file" is the source file which you want to copy with its path. And "todir" is the remote machine folder path where you want to copy the file.

4. Run commands on remote machine:

You can use following tag to execute commands on remote Linux machine.

1 <sshexec host='${remote.host}' username='${remote.username}' password='${remote.password}'
2      command='${command.to.run}' trust='true' />

1 <sshexec host='${remote.host}' username='${remote.user}' password='${remote.password}'
2          command='sh ${tomcat.home}/startup.sh' trust='true' />

5. Open an input box and respond to input value:

To open an input dialog use following tag:

1 <input message='Enter id: ' addproperty='my.id'>
2 </input>
Here "my.id" in "addproperty" is the variable name which holds input value. Now to check if user has denied to enter value in input:
1 <condition property='do.abort'>
2      <equals arg1='n' arg2='${my.id}'/>
3 </condition>
4 <fail if='do.abort'>Build aborted by user.</fail>
And if user enters value and press OK then after you can refer to entered value as "${my.id}".

6. Make an ant call:
1 <antcall target='targetName'>
2 </antcall>
Here "target" is the name of the target that will be executed.

Note: In above examples all values starting with "${"and ending with "}'' are variables and you may have to put appropriate values in them to successfully run them.

No comments:

Post a Comment

Thanks for your comments ! Please do leave feedback