Building Eclipse plugins and features on the command line - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T19:42:14Zhttp://stackoverflow.com/feeds/question/133234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line6Building Eclipse plugins and features on the command lineJesperE2008-09-25T13:13:17Z2008-10-05T15:17:58Z
<p>I have a bunch of Eclipse plugins and features, which I would like to build as part of a nightly (headless) build. I've managed to do this using a complicated setup involving manually specifying paths to Eclipse plugin jars, copying customTargets.xml, etc. </p>
<p>Is there really no simpler solution? Isn't there a way to just point out my Update Site's site.xml and say "build"; i.e. the equivalent of clicking "Build All" in the Update Site project?</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/133260#1332601Answer by Steve g for Building Eclipse plugins and features on the command lineSteve g2008-09-25T13:18:03Z2008-09-25T13:18:03Z<p>You might look into buckminster and maven. There is a learning curve for sure, but they seem to do their jobs well.</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/133284#1332841Answer by Revah for Building Eclipse plugins and features on the command lineRevah2008-09-25T13:23:10Z2008-09-25T13:23:10Z<p>I've just been fighting with this problem myself. Are you using the productBuild script? Maybe putting your features into a product would help you out.</p>
<p>I am doing a headless build on a product configuration. The only script that I customized was to add some ant tasks to customTargets.xml to get my sources from SVN and to do a little cleanup on JNLP manifests after the build as I am using WebStart.</p>
<p>Then you only need to invoke antRunner on the out of the box productBuild.xml in the scripts/productBuild directory (in the pde-build plugin).</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/133533#1335330Answer by Revah for Building Eclipse plugins and features on the command lineRevah2008-09-25T14:05:05Z2008-09-25T14:05:05Z<p>Rest assured that if someone does write a nice plugin to automate this, the documentation will be so thin that only 5 of his friends will be able to use it... :)</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/137778#1377781Answer by flicken for Building Eclipse plugins and features on the command lineflicken2008-09-26T04:30:00Z2008-09-26T04:30:00Z<p>Check out <a href="http://ant4eclipse.sourceforge.net/" rel="nofollow">Ant4Eclipse</a>. I've used it to parse Eclipse's .classpath/.project files to determine project dependencies and classpaths. In combination with <a href="http://groovy.codehaus.org/The+groovy+Ant+Task" rel="nofollow">Groovy Ant Task</a>, I have automatically built multiple projects in Ant using the Eclipse project files for build information.</p>
<p>A <a href="http://ant4eclipse.sourceforge.net/ant-for-eclipse-reference-buildPlugin.html" rel="nofollow">buildPlugin</a> task exists, but I have not personally used it.</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/137878#1378780Answer by msontag for Building Eclipse plugins and features on the command linemsontag2008-09-26T05:13:14Z2008-09-26T05:13:14Z<p>We're currently struggling with the same problem. Perhaps this article: <a href="http://www.eclipse.org/articles/Article-PDE-Automation/automation.html" rel="nofollow">http://www.eclipse.org/articles/Article-PDE-Automation/automation.html</a> will help you ?</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/172127#1721271Answer by ILikeCoffee for Building Eclipse plugins and features on the command lineILikeCoffee2008-10-05T15:17:58Z2008-10-05T15:17:58Z<p>We are currently using PDE to automatically build features and our complete product. It works quite well. Make sure you use the right script for product build or feature build.
<a href="http://help.eclipse.org/ganymede/nav/4_2" rel="nofollow">Eclipse Help on using PDE</a></p>