1st part
Never worked on team who uses different IDE for one project.. (But our team right now does that)
Never tweaked Ant Script of IDE, or wrote any Ant script..
I am Netbeans user, (since last 2 years) and ultimately want to become independent of IDEs (except for coding and code completion) .. like deploying, building
So I want some suggestions.. that how you work and what should be the ideal strategy for doing this..
2nd Part
Please Help me out in sorting this problem, I don’t want to use Tomcat in Netbeans.. takes lots of time in change-deploy-run cycle..(Everyone does not have fast machine). Instead i want to use Jetty, so now i have to run from console (or is it possible to run it in netbeans?? ), is there any tool which shows log output like IDE output window??
Cheers,
This is really only a part1 answer, and I also suggest splitting this into 2 questions.
The key to using different IDEs is to make sure none of your build/code is IDE dependent. The most typical problem is that you check in the file containing the application’s classpath (the .classpath file in eclipse for example). Instead, you should use an external dependency management system such as maven or ivy (ivy works if you use ant, but maven is both a build tool AND a dependency management system so I would recommend maven if you can). Any IDE worth its weight will have plugins to support ant, ivy and maven, so as long as the developers have the plugin, they just point to the appropriate ant or maven build files. Maven’s website is http://maven.apache.org/ and Ivy’s website is http://ant.apache.org/ivy/.