How to run Eclipse launch configurations programmatically? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:51:19Z http://stackoverflow.com/feeds/question/222093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically 2 How to run Eclipse launch configurations programmatically? jamesh 2008-10-21T14:31:03Z 2009-06-17T23:28:40Z <p>I'm finding it difficult to phrase this question well, as there are quite a few generic terms (run, configuration, launch, etc.). Here goes:</p> <p>You can <a href="http://eclipsesnippets.blogspot.com/2007/07/tip-creating-and-sharing-launch.html" rel="nofollow">save run configurations in a <code>.launch</code> file</a>. (in the Run Configuration Dialog, under the Common tab, Save as a shared file.</p> <p>We check these in to SVN. The developers can pass them around, and it helps getting new devs running a working application quicker.</p> <p>I'd like to check these out as part of our build and use them to programatically run the application, the tests, etc, without spinning up the whole IDE.</p> <p>What would be the best way to run a <code>.launch</code> file outside of the UI? </p> <p><strong>Edit</strong>: I am trying to unify the tests run on the build server and the IDE. I do not particularly want to give up integrated debugging, which would be the case with an ant script to run the tests .</p> <p>This is probably more a problem for integration testing with multiple bundles, or unit testing a whole bundle, where you'd like to mock up extensions.</p> http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically/222098#222098 1 Answer by jamesh for How to run Eclipse launch configurations programmatically? jamesh 2008-10-21T14:31:52Z 2008-11-19T12:50:41Z <p><a href="http://ant4eclipse.sourceforge.net/ant-for-eclipse-reference-launch.html" rel="nofollow">Ant4Eclipse</a> may provide a good starting point on how to do this. </p> <p>Unfortunately, this is limited to Java Applications and JUnit configurations; I am more interested in PDE applications and Plugin JUnit tests.</p> http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically/666438#666438 1 Answer by Adrian Pascalin for How to run Eclipse launch configurations programmatically? Adrian Pascalin 2009-03-20T14:43:24Z 2009-03-20T14:43:24Z <p>there is an eclipse plugin built over JUnit, called TPTP. It provides an automation client which can be used to launch the test from eclipse with no gui. maybe it helps</p> http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically/666679#666679 0 Answer by Mario Ortegón for How to run Eclipse launch configurations programmatically? Mario Ortegón 2009-03-20T15:37:31Z 2009-03-20T15:37:31Z <p>I think you don't need to use the .launch configurations to run the tests. If you build an application using the Eclipse Build System, then you can use the AntRunner application from Eclipse to run your units tests. This doesn't start the whole IDE.</p> <p><a href="http://www.eclipse.org/articles/Article-PDE-Automation/automation.html" rel="nofollow">This article describes how to run the tests during your build process</a>. With this process, you use a special "Test" Eclipse and load the plugins you want to test.</p> http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically/1009961#1009961 0 Answer by jihemm for How to run Eclipse launch configurations programmatically? jihemm 2009-06-17T23:06:03Z 2009-06-17T23:06:03Z <p>Does anyone have a solution to this question ?</p> <p>I tried with ant4eclipse but I was unable to run anything.</p> http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically/1010023#1010023 0 Answer by Fabian Steeg for How to run Eclipse launch configurations programmatically? Fabian Steeg 2009-06-17T23:28:40Z 2009-06-17T23:28:40Z <p>Perhaps running the configurations the way you would run your own custom run configurations would help here. It is described in <a href="http://www.eclipse.org/articles/Article-Launch-Framework/launch.html" rel="nofollow">this article</a>.</p>