MAVEN / Eclipse 目标平台
我们正在构建一个基于 Eclipse 目标平台的 Eclipse RCP 插件(也是我们公司内部由不同部门开发的)。我们想使用 MAVEN2 编译插件(我们还使用 NEXUS 进行存储库管理)。
目标平台由大约 130 个 JAR 组成(其中大部分是 org.eclipse.*)。执行构建的一种方法是将 130 个引用添加到 POM 文件的标记中。这不仅需要付出很大的努力,而且目标平台偶尔会发生变化,因此新的目标平台意味着大量的修改。
有没有更好的方法来处理MAVEN中的大量依赖关系?
We are building an Eclipse RCP plugin that is based on an Eclipse target platform (also developed internally in our company, by a different department). We would like to compile the plugin using MAVEN2 (we also use NEXUS for repository management).
The target platform consists of about 130 JARs (most of them org.eclipse.*). One way to perform the build would be to add 130 references into the tag of the POM file. Not only is this a lot of effort, but the target platform occasionally changes, so a new target platform would mean a lot of modifications.
Is there a better way to deal with a lot of dependencies in MAVEN?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 所有客户端 jBoss 工件。他们使用 POM 工件解决了同样的问题。
Take a look at All Client jBoss artifact. They have solved the same problem using POM artifact.