Eclipse Ganymede - Integeration with Tomcat 6 (without the whole WTP) - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:49:52Zhttp://stackoverflow.com/feeds/question/479789http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/479789/eclipse-ganymede-integeration-with-tomcat-6-without-the-whole-wtp4Eclipse Ganymede - Integeration with Tomcat 6 (without the whole WTP)Kent2009-01-26T13:28:25Z2009-01-26T13:51:03Z
<p>Hi! If I start with a <a href="http://www.eclipse.org/downloads/" rel="nofollow">Eclipse IDE for Java Developers (85 MB)</a> (Ganymede) installation. What plug ins do I need to install to be a able to:</p>
<ul>
<li>See the Server tab and being able to add my Tomcat 6 installation.</li>
<li>Be able to create a Dynamic Web Project which I may connect to my server.</li>
<li>I want to be able to start and stop the server.</li>
<li>See the server Stdout-output in my Console tab.</li>
<li>Debug an application on the server.</li>
</ul>
<p>I want to install as little as possible, as long as I can do the above things I am more than satisfied.</p>
<p>Especially since I have problems with the complete Web Tools Platform (WTP); according to <em>me</em> it's full of bugs related to validation. It sometimes says valid files are invalid, often it helps if you simply restart Eclipse. I have also found it to ignore exclusions as well as sometimes completely ignoring that I have disabled validation all together.</p>
<p>The problems I've experienced have made me uninterested in anything from the WTP project, <em>except</em> the plug ins enabling me to work more smoothly by fulfilling the above unordered list (because that part of WTP worked really well).</p>
<p>I have heard the some have had success with <a href="http://www.eclipsetotale.com/tomcatPlugin.html" rel="nofollow">Sysdeo Eclipse Tomcat Launcher Plug-in</a> together with Ganymede. But since it's officially not supported and there has not been a new release since May 2007 and running it with Ganymede involved changing the plug-in files to accept versions >=3.4 I don't see it as a long term solution.</p>
<p>Installing <strong>parts</strong> of the <strong>WTP</strong> but <strong>not it in its whole</strong> feels like a long term solution while at the same time skipping the error ridden parts of the WTP. But I need help with which parts I need to install, as the documentation on Eclipse.org does not explain. Of course, if there is another supported solution than using parts of WTP then that is of interest too!</p>
http://stackoverflow.com/questions/479789/eclipse-ganymede-integeration-with-tomcat-6-without-the-whole-wtp/479849#4798492Answer by VonC for Eclipse Ganymede - Integeration with Tomcat 6 (without the whole WTP)VonC2009-01-26T13:51:03Z2009-01-26T13:51:03Z<p>When I display the "eclipse Plug-in Dependencies" view for <code>org.eclipse.jst.server.tomcat.ui</code>, I see:</p>
<ul>
<li>org.eclipse.wst.common.emf</li>
<li>org.eclipse.wst.common.emfwrokben.integration</li>
<li>org.eclipse.wst.common.environment</li>
<li>org.eclipse.wst.common.frameworks</li>
<li>org.eclipse.wst.common.modulecore</li>
<li>org.eclipse.wst.common.project.facet.core</li>
<li>org.eclipse.wst.common.project.facet.ui</li>
<li>org.eclipse.wst.common.uriresolver</li>
<li>org.eclipse.wst.internet.monitor.core</li>
<li>org.eclipse.wst.server.core</li>
<li>org.eclipse.wst.server.ui</li>
<li>org.eclipse.wst.validation</li>
</ul>
<p>So if you can select <code>org.eclipse.jst.server.tomcat.ui</code> through p2 and let that "update process" to pick the dependencies for you, you should end up with the minimal set of plugins needed for running/managing Tomcat on Eclipse (with WTP).</p>