File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ task checkstyleMain(type: Checkstyle) {
104
104
configFile file(" $rootDir /tools/checkstyle/google_checks.xml" )
105
105
classpath = files()
106
106
reports {
107
- xml. enabled false
108
- html. enabled true
107
+ xml. required = false
108
+ html. required = true
109
109
}
110
110
}
111
111
@@ -121,8 +121,8 @@ def makeCheckstyleTask(sourceSet, config) {
121
121
configFile file(" $rootDir /tools/checkstyle/${ config} " )
122
122
classpath = files()
123
123
reports {
124
- xml. enabled false
125
- html. enabled true
124
+ xml. required = false
125
+ html. required = true
126
126
}
127
127
}
128
128
@@ -159,7 +159,7 @@ task spotbugsMain(type: com.github.spotbugs.snom.SpotBugsTask) {
159
159
release = project. version
160
160
reports {
161
161
html {
162
- enabled = true
162
+ required = true
163
163
destination = file(" $buildDir /reports/spotbugs/main/spotbugs.html" )
164
164
stylesheet = ' fancy-hist.xsl'
165
165
}
You can’t perform that action at this time.
0 commit comments