修改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包生成路径的主要内容,如果未能解决你的问题,请参考以下文章

idea maven 打包 war

tomcat修改war包路径

cmd命令如何打war包,具体步骤是啥???

springboot打war包图片的虚拟路径映射

在 Maven 中,如何输出正在使用的类路径?

将类路径添加到在 Maven 集成测试中运行的码头