SpringBoot-2、SpringBoot打包时排除指定文件

maven-jar-plugin,它可以配置 JAR 打包的细节,包括哪些文件会被包含在 JAR 中。
以下是一个示例的配置,可以在 pom.xml 中添加:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>3.2.0</version>
            <configuration>
                <excludes>
                    <exclude>**/xxxx</exclude> <!-- 需要排除的文件路径 -->
                </excludes>
            </configuration>
        </plugin>
    </plugins>
</build>

posted @ 2023-08-02 10:49  zhaogaojian  阅读(93)  评论(0编辑  收藏  举报