Everything about js Object

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 understand them first…

Read more »
environment-variables-and-properties-defined-in-jenkins

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 shell script, batch…

Read more »
msbuild-introduction

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 of Team Foundation…

Read more »
properties-in-maven

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 directory containing pom.xml…

Read more »
java-system-properties

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”/>   ${env.ENVIRONMENT_VARIABLE} e.g.  …

Read more »
set-unix-home-dir-property-using-ant

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”>         <echo message=”My home…

Read more »
ants-built-in-properties

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 name, java home…

Read more »