maven打包 不包含目录
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <excludes> <exclude>/**.yml</exclude> <exclude>/static/**</exclude> <exclude>/bootstrap.properties</exclude> <exclude>/logback-spring.xml</exclude> </excludes> </configuration> </plugin> </plugins> </build> 来源: oschina 链接: https://my.oschina.net/internetafei/blog/4432338