修改maven的war包生成路径
Posted 前进路上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改maven的war包生成路径相关的知识,希望对你有一定的参考价值。
因为要配合jenkins,所以控制了war包的生成目录:
<plugins> <!--打war包到指定的目录下 --> <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>../target/</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins>
以上是关于修改maven的war包生成路径的主要内容,如果未能解决你的问题,请参考以下文章