【Git】git package時失敗 Some files do not have the expected license header

背景:從github下載的代碼,git package時失敗報錯

錯誤如下:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.671 s
[INFO] Finished at: 2020-01-09T10:58:22+08:00
[INFO] Final Memory: 26M/430M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.mycila:license-maven-plugin:3.0:check (default) on project zipkin-dependencies-parent: Some files do not have the expected license header -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

問題原因:

有一些文件License的註釋頭沒有添加

解決方案:

找到這個插件,然後添加exclude

<plugin>
    <groupId>com.mycila</groupId>
    <artifactId>license-maven-plugin</artifactId>
        <excludes>
        <!--  都不檢查 license    -->
            <exclude>**</exclude>
        </excludes>
</plugin>

或者直接給這個插件刪掉

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章