我在eclipse插件中有一些代码,我想在不需要eclipse的情况下运行这段代码。有可能吗?
可以从命令行运行代码,如下所示:
eclipse.exe -console -data "WS_directory" -nosplash -application MyAppPluginID.MyAppExtensionID
但是我仍然需要在运行我的代码的机器上使用eclipse,这是我想避免的,但是如何?
谢谢,阿纳斯
答案 0 :(得分:1)
不,这是不可能的。 Eclipse插件(也是OSGi Bundles)不是独立的应用程序,它们需要托管的Eclipse平台(及其OSGi运行时)。
答案 1 :(得分:0)
看看这个
java -jar org.eclipse.osgi_3.2.0.jar -console
然后
install <bundle URL> - Installs the bundle from the given URL
来源: http://eclipse.org/equinox/documents/quickstart-framework.php