替换 EAR 中重建的模块 JAR(Maven2 项目)
在开发期间,我正在迭代地重建项目的一些模块。重建最终的耳朵项目需要大量的时间。如果有一种方法允许仅重建已更改模块的 jar 文件,然后在生成的 EAR 中替换该 jar,那么它可以减少构建时间并加速开发过程。
所以问题:是否有任何 Maven 插件允许在耳朵中进行部分模块重建和替换 jars?
During the development time I'm iteratively rebuilding some modules of my project. Rebuilding resulting ear-project gets a huge amount of time. If there is a way allowing to rebuild only jar file of changed module and then replace this jar in resulting EAR then it could reduce build time and accelerate development process.
So questions: Is there any maven plugin allowing to do partial module rebuilding and replacing jars in ear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试使用
-pl
或--projects
选项(需要 Maven 2.1+,请参阅 Maven 提示和技巧:高级反应器选项 了解更多详细信息)?类似这样的事情:这可能会加快速度。
Did you try to use the
-pl
or--projects
option (requires Maven 2.1+, see Maven Tips and Tricks: Advanced Reactor Options for more details)? Something like that:This might speed up things.