概述
pom.xml中加入插件并设置属性;
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-war</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
</artifactItems>
<!--指定war包保存地址-->
<outputDirectory>F:serverapache-tomcat-8.0.42webapps</outputDirectory>
<includeArtifactIds>false</includeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
最后
以上就是满意狗为你收集整理的Maven工程打包时动态设置war包目录的全部内容,希望文章能够帮你解决Maven工程打包时动态设置war包目录所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复