Objects in java-script explained!

Objects are used to store keyed collections of various data and more complex entities. In JavaScript, objects penetrate almost every aspect of the language. So we must…

Read More

Environment variables and properties defined in jenkins | Jenkins Tutorial

Environment variables and properties defined in jenkins Jenkins Set Environment Variables When a Jenkins job executes, it sets some environment variables that you may use in your…

Read More

Introduction to MSBuild – Quick Intro Guide

Introduction to MSBuild Microsoft supported build engine XML-based configuration file Intellisense available from Visual Studio using supplied schema Ships with .NET Framework 2.0, it is NOT part…

Read More

Properties in Maven – List of Maven Properties

Intro It is a collection of things found in the offcial maven documentation and postings to the maven user mailing list. Build in properties ${basedir} represents the…

Read More

How to access all Java system properties directly?

You could access all Java system properties directly via ${name}, e.g. ${user.name}, ${user.dir}, ${user.home}, … You could read environment properties and use them   <properties environment=”env”/>  …

Read More

SET UNIX HOME DIR PROPERTY using ANT

Set properties HOMEDIR in build.xml which will be set through user logged in the current system.. Example: <project name=”test” default=”myhome”>     <property environment=”env”/>     <target name=”myhome”>        …

Read More

Ant’s built-in properties – Ant Properties Guide

This is a simple example that illustrates how to find the basedir name, file name, project name, ant version, java version, operating system name, ant home directory…

Read More