Wednesday, March 27, 2013

Maven Options

No comments:
There are many options that can be passes as parameter to maven, those useful options are, usage: mvn [options] [<goal(s)>] [<phase(s)>] Options:  -am,--also-make                       ...
Read More

Jenkins Environment variables

No comments:
Jenkins is having many environment variables, Each environment variable is very important one or other way. Lets see how can we use these variables efficiently  in jenkins. E.g : BUILD_NUMBER While archiving each build on a job. We can name the build such as MyJob_1. Goal:...
Read More

Eclipse Remote Debugging

No comments:
Eclipse Remote Debugging In earlier posts, I wrote about remote debugging with eclipse. Today i found some interesting eclipse debugging blogs, http://javarevisited.blogspot.in/2011/02/how-to-setup-remote-debugging-in.htmlhttp://javarevisited.blogspot.in/2011/07/java-debugging-tutorial-example-tips.html ...
Read More

Wednesday, March 13, 2013

Jenkins CLI commands

No comments:
Jenkins CLI commands    build: Builds a job, and optionally waits until its completion. cancel-quiet-down: Cancel the effect of the "quiet-down" command. clear-queue: Clears the build queue connect-node: Reconnect to a node copy-job: Copies a job. create-job: Creates a...
Read More

Monday, March 11, 2013

XMLPropertyListConfiguration / Plist Parser example

No comments:
XMLPropertyListConfiguration / Plist Parser example XMLPropertyListConfiguration is having a fantastic API to work with plist files. But there is no much example for this library. After some googling and library analysis, it came to know that it is very very easy to parse the files...
Read More