从 oeui.workbench 捆绑包中分离出选择服务
我想在我的 swing 项目中使用 eclipse RCP 的选择服务功能。目前包含相关接口的 oeui.workbench 包大约 3.7 MB,这对于我们的要求来说太大了
- 有没有办法将其拆分为工作台以仅获取选择服务
- 是否已经有发行版这样
- 做这样做是否合法。是否存在任何许可证问题?
I want to use Selection Service feature from the eclipse RCP in my swing project. Currently the o.e.ui.workbench bundle which contains the related interface is around 3.7 MB, that's way too huge for our requirement
- Is there any way to split it the workbench to get only the selection service
- Are there distros already for this
- Is it leagal to do so. Are there any licencse issues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来自己做起来并不难,而且这几乎就是你必须做的。但据我所知,没有发行版可以做到这一点。
这样做当然是合法的;您可以自由使用或修改 Eclipse 的任何部分,直到 EPL。如果您在不进行修改的情况下拆分它,那么您在许可证下不承担任何义务。但是,如果您扩展它(并重新分发您的代码),那么您需要提供扩展它的代码(例如,可以使用 Eclipse 错误报告来完成)。
It does not look like it would be that hard to do it yourself, and that's pretty much what you would have to do. I know of no distros that do this however.
It's certainly legal to do so; you can freely use or modify any part of Eclipse until the EPL. If you split it without modifications then you have no obligations under the license. However if you extend it (and redistribute your code), then you need to make available your code that extends it (which can be done using an Eclipse bug report for example).