在使用 Maven 进行打包阶段后,在本地 JBoss 实例上自动部署 war 文件
当我构建项目时,我运行此命令:
mvn clean package
我希望在 package
阶段将在默认目标目录中构建的生成的 jar 文件复制到另一个目录中。
我怎样才能用 Maven 做到这一点?
When I build my project, I run this command :
mvn clean package
I'd like the resulting jar file built in the default target directory, during the package
phase, be copied in another directory.
How can I do this with Maven?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,Super POM 中声明的文件夹已被您的 pom.xml 继承。
您可以通过以下方式在 pom.xml 中更改它:
By default the folder declared in Super POM, that have been inherited by your pom.
You can change it in your pom.xml the next way:
您可以使用 ant run 插件将这些内容复制过来。
以下内容摘自 pom 来自 rhq-project.org
You can use the ant run plugin to copy the stuff over.
The following is taken from a pom from rhq-project.org