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 | 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 »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 »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 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 »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 »