美文网首页软件测试
【2019-01-28】maven 打包插件 pom 包含入口

【2019-01-28】maven 打包插件 pom 包含入口

作者: 质检员晓东 | 来源:发表于2019-01-28 14:24 被阅读2次

<build>

  <plugins>

    <plugin>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-maven-plugin</artifactId>

        <configuration>

        <includeSystemScope>true</includeSystemScope>

        <outputDirectory>${project.basedir}</outputDirectory>

        </configuration>

        <executions>

            <execution>

                <goals>

                    <goal>repackage</goal>

                </goals>

            </execution>

        </executions>

</plugin>

  </plugins>

  </build>

相关文章

网友评论

    本文标题:【2019-01-28】maven 打包插件 pom 包含入口

    本文链接:https://www.haomeiwen.com/subject/vyeajqtx.html