Enterprise Java

Useful Ant build tags

Questions:

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:

<zip destfile='${destination.folder}/zipName.zip'>
     <fileset dir= '${Source.folder}' />
</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:

<exec dir='${tomcat.home}/bin' executable='cmd' os='Windows XP'>
     <arg line='/c startup.bat'/>
</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:

If remote machine is in your LAN and you can access it directly as \\remote_machine\path then you can use simple copy command as follows:

<copy file='${source.folder.file} ' todir='\\remote\path'>
</copy>

To copy files on remote machine that supports SCP use following tag:

<scp file='${source.folder.file} ' todir='${remote.user}@${remote.host}:${remote.path.where.to.do.copy}'
       password='${remote.password}' trust='true'>
</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.

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

For example to start tomcat use following tag:

<sshexec host='${remote.host}' username='${remote.user}' password='${remote.password}'
         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:

<input message='Enter id: ' addproperty='my.id'>
</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:

<condition property='do.abort'>
     <equals arg1='n' arg2='${my.id}'/>
</condition>
<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:

<antcall target='targetName'>
</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.

Reference: Useful Ant build tags from our JCG partner Harsh Raval at the harryjoy blog.

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button