概述
最近在spark streaming本地调试的时候,引入了一些资源文件,打包的时候需要给排除掉。所以就考虑使用maven的方式
详细参考官方文档:https://maven.apache.org/plugins/maven-jar-plugin/examples/include-exclude.html
排除某个资源文件
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<excludes>
<exclude>core-site.xml</exclude>
<exclude>hdfs-site.xml</exclude>
</excludes>
</configuration>
</plugin>
排除某个目录
<project>
...
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<includes>
<include>**/service/*</include>
</includes>
</configuration>
</plugin>
...
</plugins>
</build>
...
</project>
我的博客即将搬运同步至腾讯云+社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan
最后
以上就是无情天空为你收集整理的Maven打包排除某个资源或者目录排除某个资源文件排除某个目录的全部内容,希望文章能够帮你解决Maven打包排除某个资源或者目录排除某个资源文件排除某个目录所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复