我使用xtext在eclipse juno中创建了一个插件,我使用以下教程打包我的插件:http://www.vogella.com/articles/EclipsePlugIn/article.html#p2deployplugin ... sec 6.为您的插件创建更新站点并将其安装在相同版本的eclipse IDE和安装成功。我需要在其他版本的eclipse(Helios,Galileo等)中安装它,但是当我尝试在Helios中安装时会出现以下消息:
Cannot complete the install because one or more required items could not be found.
Software being installed: MView Source 1.0.0.201308011127 (MView.feature.group 1.0.0.201308011127)
Missing requirement: MView Source 1.0.0.201308011127 (MView.feature.group 1.0.0.201308011127) requires 'org.eclipse.xtext 2.0.0' but it could not be found.
我搜索了org.eclipse.xtext 2.0.0 jar以添加到依赖项,但我没有找到它。 我不知道这是否会起作用,但我想问一下是否有办法让我的插件兼容各种版本的eclipse IDE以及如何兼容。兼容后向版本和转发版本。我很感激有关它的任何信息。对不起我的英语非常感谢你。 =)
答案 0 :(得分:0)
如果Eclipse安装不包含Xtext,则需要向Eclipse提供其所在的插件存储库(有时称为更新站点)的URL。这将使Eclipse能够在安装插件时发现并安装您的依赖项。您可以在Xtext网站上找到所需的URL。
答案 1 :(得分:0)
尝试在两个eclipse instalations中看到XTEXT插件的版本:
Help > About Eclipse > Installation Details.
在“插件”标签中,搜索 Xtext UI Core
对不起我的英语。
答案 2 :(得分:-1)
完整概述:
可以在这里找到:XText versions, dependencies and Eclipse platform matrix
还有一个非常有用的目标平台配置示例!