hudson-master-slave-setup

How to Setup Configure Hudson Master Slave? – Complete Guide

The tasks can be scheduled to run on the same machine (Master), or on a different machine (Slave). A master is a installation of Hudson, that can manage one or…

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 »
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 »
svn-pros-and-cons

| SVN | Subversion | SVN pros and Cons| SVN Repository Planning | SVN Repository layout

| SVN | Subversion | SVN pros and Cons| SVN Repository Planning | SVN Repository layout | Subversion (SVN) Repository Layout Single Project – One project per repository location Pros…

Read more »
sonar-pdf-report-plugin

Sonar PDF Report Plugin 2.1 – What is new in Sonar PDF Report Plugin 2.1?

Hi all, I’m proud to announce the availability of a new release of Sonar PDF Report Plugin (Commercial edition): http://blog.klicap.es/products/sonarpdfreportplugin Key features of this new release: * Include information provided…

Read more »

Sonar 2.2 Released – Know what’s new in Sonar 2.2 ?

Sonar 2.2 Released – Know what’s new in Sonar 2.2 ? The Sonar Team is pleased to announce the release of Sonar 2.2. There are two key features in this new version :…

Read more »
website-typography

Website Typography

Below is a list with arrows. To use this style create a list in the following format: …. …. … Quisque ultrices etiam, class nec velit vestibulum sit congue pulvinar,…

Read more »
maven2-step-by-step

Maven2 Step by Step Guide – Complete Introduction

Setting up the application frame The Maven2 documentation is silent about how to set up web application skeletons. The standard archetypes allow you to create a simple standalone, a simple…

Read more »
clearcase-faq

Rational ClearCase Frequently Asked Questions – ClearCase Faqs

1. How do I find all view private files in my view? cleartool ls -r -view_only This restricts the listing to objects that belong logically to the view: view-private files,…

Read more »
clover-and-maven-working-with-distributed-applications

Clover and Maven working with Distributed Applications

1.       Configure maven clover plugin. 2.       Build the all components with clover enabled. 3.       Deploy the clover enabled build to test server. 4.       Run the tests. 5.       Create & Review…

Read more »
information-technology-infrastructure-library-itil/

What is Information Technology Infrastructure Library (ITIL) ? – Complete Guide

Introduction The Information Technology Infrastructure Library (ITIL) is a set of concepts and practices for managing Information Technology (IT) services (ITSM), IT development and IT operations. Purpose ITIL stresses service…

Read more »