Top 10 Build Management Tools updated 2020

In this blog we are going to discuss about top 10 build management tools which are most popular and utilised by DevOps professionals. While faster software development…

Read More

Apache Ant

Ant is a Java library and command-line tool. Ant’s mission is to drive processes described in build files as targets and extension points dependent upon each other….

Read More

Introduction of Apache Ant

Apache Ant is a software tool for automating software build processes. It is similar to Make but is implemented using the Java language, requires the Java platform, and…

Read More

Apache Ant: A Build Tool

Apache Ant (or simply Ant) is an XML-based build scripting language used heavily by the Open Source community. Ant automates tasks such as compiling source code, building deployment…

Read More

Using Ant to build J2EE Applications

Apache Ant (Another Neat Tool) is a build tool, mainly for Java projects. A build tool can be used to automate certain repetitive tasks, e.g. compiling source code,…

Read More

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…

Read More

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…

Read More

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…

Read More

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…

Read More

Power Point PPT: Apache Ant – Complete Guide

Power Point PPT: Apache Ant Apache Ant from Rajesh Kumar   Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at Cotocus….

Read More

Power Point PPT: Introduction To Ant

Power Point PPT: Introduction To Ant Introduction To Ant from Rajesh Kumar   Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked…

Read More

Power Point PPT: Introduction of Apache Ant

Power Point PPT: Introduction of Apache Ant Introduction To Ant from Rajesh Kumar Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked…

Read More

How to Resolve Apache Ant Copy and Include Issues – Ant Guide

Question: Why Copy in ant is not working if I am putting includes separately? Ant version: Apache Ant version 1.5.4 compiled on January 8 2005. Program 1…

Read More

Copy and Include Issues in Apache Ant | Ant Troubleshooting Guide

Question: Why Copy in ant is not working if I am putting includes separately? Ant version: Apache Ant version 1.5.4 compiled on January 8 2005. Program 1…

Read More

What is Apache Ant? – Apache ant Overview

What is an apache ant? Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make’s wrinkles. Why another build…

Read More