Maven打包排除某个资源或者目录
生活随笔
收集整理的這篇文章主要介紹了
Maven打包排除某个资源或者目录
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近在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
本文轉自博客園xingoo的博客,原文鏈接:Maven打包排除某個資源或者目錄,如需轉載請自行聯系原博主。總結
以上是生活随笔為你收集整理的Maven打包排除某个资源或者目录的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 连续三天梦到同一个人是怎么回事
- 下一篇: 动态链接库.so和静态链接库.a的区别