Top 50 Junit interview questions and answers

1) What is Testing? Testing is the process of checking the functionality of the application whether it fulfills the requirement or not. 2) What is unit testing? The process of…

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 packages and automatically…

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, running software tests,…

Read more »

Useful links for Sonar with Ant

rajeshkumar created the topic: Useful links for Sonar with Ant Sonar with Ant sonar.codehaus.org/a-new-hudson-plugin-f…egration-with-sonar/ old.nabble.com/Ant-Integration-td20105950.html old.nabble.com/JUNIT—ANT-Build-File-td21797773.html docs.codehaus.org/display/SONAR/Analyzing+Java+Projects Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn rajeshkumar replied the topic: Re: Useful…

Read more »

Ant cpptask with ivy

rajeshkumar created the topic: ant cpptask with ivy Questions: A company I am working for, has some c binaries build with ant using cpptask. They use ivy to retrieve shared…

Read more »

Ant+Unable to create directory as a file already

rajeshkumar created the topic: Ant+Unable to create directory as a file already Hi, I have one file called djir.ear and I am trying to create a folder with the same…

Read more »

Help in copy files from list using ant

scmuser created the topic: Help in copy files from list using ant Help in copy files from list using ant Hi, I have one file called list.txt where i have…

Read more »

Ant Scripting Issue

ant-qa created the topic: Ant Scripting Issue 1) I have many ant build files ( .xml files / test scripts) in folder : bin/execute 2) I have another testsuit.xml file…

Read more »

Condition with Task in Ant

scmuser created the topic: Condition with Task in Ant Hi, How can i use conditions in Ant Task execution? Any idea? tpatil replied the topic: Re: Condition with Task in…

Read more »

ANT Build Integration with InstallAnywhere

installanywhereExpert created the topic: ANT Build Integration with InstallAnywhere ANT Build Integration with InstallAnywhere ANT is a powerful, Java based build tool developed by the Apache Foundation’s Jakarta Project. It…

Read more »
build-and-release-training-with-jenkins-maven-ant-svn-git

Build and Release Course Training with Jenkins / Maven /Ant/ SVN & Git

Upcoming Training Dates | Training Agenda | Training Calender | FAQ | Why scmGalaxy Online Training Click Here Mode – Online based Email – info@scmgalaxy.com Lab Setup Details – Prerequisites Operating Systems – Windows 7…

Read more »
apache-ant-training

Apache Ant Training | Apache Ant Course | Online | Classroom | India

Course SummaryThis course introduces Ant and how to use it for test-driven Java application development. A single application of increasing complexity, followed throughout the class, shows how an application evolves…

Read more »
maven-vs-ant

Maven Vs Ant | Maven or Ant which is better ?

Maven Vs Ant

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-build-script-war-file

A sample Ant build script that builds a WAR file – Guide

A sample Ant build script that builds a WAR file <project name=”MyWebApplication” basedir=”..” default=”install”> <!– project-specific variables –> <property name=”jsp.dir.name” value=”myapp” /> <property name=”package.name” value=”${jsp.dir.name}.war” /> <property name=”webapp.dir” value=”/Users/al/tomcat-6.0.16/webapps” />…

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 »
svn-integration-in-ant-build

How to Integrate Subversion Into Your Ant Build ? – Step by step guide

SVNAnt SVNAnt is an Ant task allowing you to interact with Subversion within the convenience of your Ant build script. No more writing custom scripts to get the revision of…

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 »