Developing on Eclipse 3.4, running on Eclipse 3.3 - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T10:23:29Zhttp://stackoverflow.com/feeds/question/38907http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/38907/developing-on-eclipse-3-4-running-on-eclipse-3-35Developing on Eclipse 3.4, running on Eclipse 3.3zvikico2008-09-02T05:46:42Z2009-05-19T10:30:21Z
<p>I'm developing an Eclipse plug-in, based on a bunch of core Eclipse plug-ins like SWT, JDT, GEF and others. </p>
<p>I need my plug-in to be compatible with Eclipse 3.3, since many potential customers are still using it. However, personally I like the new features in Eclipse 3.4 and would like to use it for my development. This means I need PDE to reference 3.3 code and, when debug, execute a 3.3 instance.</p>
<p>Any tips on how this can be achieved?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/38907/developing-on-eclipse-3-4-running-on-eclipse-3-3/39022#390228Answer by Barak Schiller for Developing on Eclipse 3.4, running on Eclipse 3.3Barak Schiller2008-09-02T08:27:01Z2008-09-02T08:27:01Z<p>You can change the 'Target platform' setting to point to the location of an existing set of eclipse 3.3 plugins. This will compile your code against the 3.3 plugins, making sure that they stay compatible no matter which version of eclipse you are using to develop the application. </p>
<p>The setting is under Window->Preferences->Plug-in development->Target Platform</p>
http://stackoverflow.com/questions/38907/developing-on-eclipse-3-4-running-on-eclipse-3-3/111727#1117271Answer by Rafael Chaves for Developing on Eclipse 3.4, running on Eclipse 3.3Rafael Chaves2008-09-21T18:54:57Z2008-09-21T18:54:57Z<p>What Barak said. See also this topic on Eclipse help:</p>
<p><a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.pde.doc.user/guide/tools/preference_pages/target_platform.htm" rel="nofollow">http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.pde.doc.user/guide/tools/preference_pages/target_platform.htm</a></p>
<p>Note also:</p>
<ul>
<li>the default target platform is your Eclipse install</li>
<li>your dev environment should be at least as recent as the target platform (i.e. you cannot use 3.3 as dev environment and target 3.4)</li>
<li>this also allows you to develop against plug-ins you don't have in your development Eclipse install.</li>
</ul>
http://stackoverflow.com/questions/38907/developing-on-eclipse-3-4-running-on-eclipse-3-3/881975#8819750Answer by St.Shadow for Developing on Eclipse 3.4, running on Eclipse 3.3St.Shadow2009-05-19T10:30:21Z2009-05-19T10:30:21Z<p>And is it no way how to develop plugin for newer palfrom? Eg.: develop new plugin for 3.5 into 3.4...</p>