if I have a plugin that validates code in Eclipse to a particular standard/spec, is it possible to invoke that plugin from the command line, passing source files as arguments?
Thanks
2 Answers 2
Example:
java -jar plugins\org.eclipse.equinox.launcher_1.0.0.v20070523.jar -consoleLog
-console -nosplash -application Console.ConsoleStatistics file:///c:/temp/test.aaxl
From: https://wiki.sei.cmu.edu/aadl/index.php/Creating_Headless_(Command_Line)_Plugins
answered Jan 11, 2011 at 20:49
jzd
23.6k9 gold badges58 silver badges76 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
You can create new headless application and run it through the command line. Here is a simple "hello word" example.
http://www.developertesting.com/archives/month200508/20050823-HeadlessHelloWorldInEclipse.html
MD XF
8,1899 gold badges45 silver badges74 bronze badges
answered Dec 28, 2011 at 15:17
Mostafa Barmshory
2,0692 gold badges28 silver badges44 bronze badges
Comments
lang-java