Skip to main content

Posts

Showing posts from March, 2012

Skip build while launching remote debug in eclipse

While debugging remote server like jboss, tomcat etc.. eclipse will try to build whole workspace which already build, that will take time finish of. To skip build while launching remote debug, There is option eclipse  * goto preferences --> Run/Debug --> Launching * uncheck Build (If required ) before launching

Maven skip test and skip test compile

In maven there are two ways to skip test. mvn install - DskipTests this will skip the tests but classes will compile. mvn install - Dmaven . test . skip = true this will skip the test and also will skip compilation of test classes Whenever we need to skip compilation of test classes we can use second one.