Maven:如何在两个文件夹中生成项目的war文件
我希望当我运行 mvn install 时,可以在 /target 中生成一个 war,并在 c:....tomcat 6\deploy 目录中生成另一个 war。 我正在使用 maven2、Eclipse 和 m2eclipse。如何做到这一点? 谢谢:)
I want that when I run the mvn install, a war can be generated in the /target and an other war in the c:....tomcat 6\deploy directory.
I'm using maven2, Eclipse and m2eclipse. How to do this ??
Thnx :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试使用 maven-antrun-plugin 将您的战争复制到tomcat部署目录如下:
You could try to use the maven-antrun-plugin to copy your war to the tomcat deploy directory like this:
如果您尝试 Maven Jetty 插件<,也许您不需要复制 war 文件/a>.该插件用于直接从 Maven 运行 Web 应用程序。
Maybe you don't need to copy the war file if you try the Maven Jetty Plugin. This plugin is for running a web application directly from Maven.
尝试 cargo-maven2-plugin。可能这样的东西会起作用:
...将其放入配置文件或顶级
部分,看看它是否适合您...Try the cargo-maven2-plugin. Probably something like this would work:
... slap that into a profile or the top-level
<build><plugins>
section and see if it works for you ...