maven+tycho:更改“eclipse-application”的构建文件夹来自“日食”的目标对某事
我使用 Maven 3 + Tycho 插件构建 Eclipse RCP 应用程序。 构建输出结构为:
/target
/win32.win32.x86
/eclipse
/win32.win32.x86_64
/eclipse
/linux.gtk.x86_64
/eclipse
/linux.gtk.x86
/eclipse
/product-1.0.0.13-linux.gtk.x86.zip
/product-1.0.0.13-linux.gtk.x86_64.zip
/product-1.0.0.13-win32.win32.x86.zip
/product-1.0.0.13-win32.win32.x86_64.zip
product**.zip 文件中包含“eclipse”顶级文件夹。
如何更改构建,以便顶级文件夹被称为“myproduct”而不是“eclipse”?
I build my Eclipse RCP application with Maven 3 + Tycho plugin.
the build output structure is:
/target
/win32.win32.x86
/eclipse
/win32.win32.x86_64
/eclipse
/linux.gtk.x86_64
/eclipse
/linux.gtk.x86
/eclipse
/product-1.0.0.13-linux.gtk.x86.zip
/product-1.0.0.13-linux.gtk.x86_64.zip
/product-1.0.0.13-win32.win32.x86.zip
/product-1.0.0.13-win32.win32.x86_64.zip
product**.zip files have "eclipse" top folders in them.
How can I change the build so that the top level folders be called "myproduct" instead of "eclipse"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信这仍然是“硬编码”(如果曾经是的话),但是当谈到选择性地选择你想要的东西/你想要的东西在你的档案中时,我总是找到 antrun 插件对重命名/删除/重新压缩有很大帮助;您只想禁用使用此插件的项目的默认打包插件,因为打包两次是没有意义的。
I don't believe this is still "hardcoded" (if it ever was) but when it comes to being selective about what you want/how you want things in your archive, I've always found the antrun plugin to be a great help in renaming/deleting/rezipping; you'll just want to disable the default packaging plugin for the projects that use this as there is no point in packaging twice.