0
我正在嘗試將checkstyle添加到我的build.gradle
。Checkdle with Gradle
Checkstyle模板是commons-math3
,可以從here訪問。
但是該文件使用${checkstyle.header.file}
來檢查每個源文件頂部的許可證聲明。
<!-- Verify that EVERY source file has the appropriate license -->
<module name="Header">
<property name="headerFile" value="${checkstyle.header.file}"/>
</module>
所以我添加下面的語句在我build.gradle
:
checkstyle {
configFile = rootProject.file("commons-math-checkstyle.xml")
headerFile = rootProject.file("license-header.txt")
toolVersion = '7.8.1'
}
,但它使一個錯誤。
從build.gradle
卸下headerFile = rootProject.file("license-header.txt")
,使在CheckStyle的xml文件Header
模塊通過<!--
和-->
(即禁止)使CheckStyle的效果很好纏繞。
如何在我的build.gradle
文件中聲明checkstyle.header.file
?