Building Eclipse plugins and features on the command line - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T19:42:14Z http://stackoverflow.com/feeds/question/133234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line 6 Building Eclipse plugins and features on the command line JesperE 2008-09-25T13:13:17Z 2008-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#133260 1 Answer by Steve g for Building Eclipse plugins and features on the command line Steve g 2008-09-25T13:18:03Z 2008-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#133284 1 Answer by Revah for Building Eclipse plugins and features on the command line Revah 2008-09-25T13:23:10Z 2008-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#133533 0 Answer by Revah for Building Eclipse plugins and features on the command line Revah 2008-09-25T14:05:05Z 2008-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#137778 1 Answer by flicken for Building Eclipse plugins and features on the command line flicken 2008-09-26T04:30:00Z 2008-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#137878 0 Answer by msontag for Building Eclipse plugins and features on the command line msontag 2008-09-26T05:13:14Z 2008-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#172127 1 Answer by ILikeCoffee for Building Eclipse plugins and features on the command line ILikeCoffee 2008-10-05T15:17:58Z 2008-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>