使用 Eclipse UI 运行插件更新

发布于 2024-08-23 18:35:17 字数 258 浏览 7 评论 0原文

我正在尝试从命令行更新 Eclipse Galileo SR2 安装的插件。

类似于此命令(要求特定功能):

java -jar org.eclipse.equinox.launcher_*.jar -application org.eclipse.update.core.standaloneUpdate -command update

有谁知道是否存在使用 p2 或任何其他 Eclipse 应用程序运行器的命令?

I'm trying to update the plugins for an Eclipse Galileo SR2 installation from the command line.

Something similar to this command (which asks for a specific feature):

java -jar org.eclipse.equinox.launcher_*.jar -application org.eclipse.update.core.standaloneUpdate -command update

Does anyone know if a command exists using p2 or any other Eclipse application runner?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始于初秋 2024-08-30 18:35:17

我能够使用以下命令将 Eclipse Classic Galileo 从 SR1 升级到 SR2:

java -jar plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar 
     -application org.eclipse.equinox.p2.director 
     -installIU org.eclipse.sdk.ide 
     -uninstallIU org.eclipse.sdk.ide 
     -artifactRepository http://download.eclipse.org/releases/galileo 
     -metadataRepository http://download.eclipse.org/releases/galileo 
     -profile SDKProfile 
     -flavor tooling 
     -destination C:\eclipse 
     -p2.os win32 -p2.ws win32 -p2.arch x86
  • director 当前不执行更新,但卸载和安装是等效的。请参阅 bug 279659
  • 安装/卸载值 org.eclipse .sdk.ide 将取决于您具体安装的内容。这是经典的 Eclipse SDK。如果您正在运行其他东西,您需要找到根可安装单元 ID。转到帮助 ->关于->安装详情->已安装的软件。查找树的根节点的 id。 “面向 C/C++ 开发人员的 Eclipse IDE”是 epp.package.cpp。 “面向 Java 开发人员的 Eclipse IDE”是 epp.package.java
  • -profile 值 SDKProfile 还取决于您正在运行的包。检查 config.ini 文件中的 eclipse.p2.profile 属性。
  • -destination C:\eclipse 是我正在升级的 eclipse,也是我用来运行此命令的 eclipse。

I was able to upgrade Eclipse Classic Galileo from SR1 to SR2 using the following command:

java -jar plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar 
     -application org.eclipse.equinox.p2.director 
     -installIU org.eclipse.sdk.ide 
     -uninstallIU org.eclipse.sdk.ide 
     -artifactRepository http://download.eclipse.org/releases/galileo 
     -metadataRepository http://download.eclipse.org/releases/galileo 
     -profile SDKProfile 
     -flavor tooling 
     -destination C:\eclipse 
     -p2.os win32 -p2.ws win32 -p2.arch x86
  • The director doesn't do updates currently, but doing both uninstall and install is equivalent. See bug 279659
  • The install/uninstall value org.eclipse.sdk.ide will depend on what exactly you have installed. Here this is the classic Eclipse SDK. If you are running something else you need to find the root installable unit id. Go to Help -> About -> Installation Details -> Installed Software. Look for the id of the root node of the tree. "Eclipse IDE for C/C++ Developers" is epp.package.cpp. "Eclipse IDE for Java Developers" is epp.package.java.
  • The -profile value SDKProfile also depends on what package you are running. Check the eclipse.p2.profile property in your config.ini file.
  • The -destination C:\eclipse is the eclipse I am upgrading which is also the eclipse I'm using to run this command.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文