禁用构建时目标的刷新
我正在使用 tycho 构建我的 rcp 应用程序。遗憾的是,今天我必须发布第一个内部里程碑,但我正在使用的一个项目已经关闭(伟大的 LWJGL - http://www.lwjgl.org/),因此我的构建失败,因为我无法解析目标平台的条目。
有没有办法禁用此类更新?
请注意,我已经构建了我的应用程序,因此我已经下载了所有 LWJGL 的 jar 和 p2 内容。现在我只想使用我已经必须构建 RCP 应用程序的 LWJGL 版本...
I'm using tycho to build my rcp application. Sadly, today I have to release the first internal milestone, but one of the projects I'm using is down (The great LWJGL - http://www.lwjgl.org/) and consequently my build fails because I cannot resolve an entry of my target platform.
Does there is a way to disable such update?
Note that I already have build my app, hence I already have downloaded all the LWJGL's jars and p2 stuff. Now I simply want to use the version of LWJGL I already have to build my RCP application...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个相应的 Eclipse p2 bug,需要针对目标平台进行更新站点检查 - 这就是 Maven 离线模式无法按预期工作的原因。请参阅 https://bugs.eclipse.org/bugs/show_bug.cgi?id= 337022
对于稍后,我建议构建关键外部站点的镜像。在这种情况下,您至少可以将构建重定向到该位置。例如 b3 聚合器可用于此: http://www.eclipse.org/modeling/emft /b3/
There is a corresponding Eclipse p2 bug that needs update site checking for the target platform - that's why maven offline mode does not work as expected. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=337022
For later, I suggest building a mirror of critical outside sites. In that case you could at least redirect the build to that. E.g. b3 aggregator can be used for this: http://www.eclipse.org/modeling/emft/b3/
尝试maven离线模式(mvn -o)
try maven offline mode (mvn -o)