We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eebcb3e commit a20e3aaCopy full SHA for a20e3aa
1 file changed
build.gradle
@@ -147,10 +147,10 @@ tasks.register('bundle', Bundle) {
147
}
148
149
license {
150
- header project.file("config/license/HEADER")
+ header = project.file("config/license/HEADER")
151
ext.year = Calendar.getInstance().get(Calendar.YEAR)
152
- skipExistingHeaders true
153
- ignoreFailures true
+ skipExistingHeaders = true
+ ignoreFailures = true
154
excludes(["**/*.md", "**/*.txt"])
155
156
@@ -231,9 +231,9 @@ jacocoTestReport {
231
dependsOn testNG
232
233
reports {
234
- xml.required.set(true)
235
- csv.required.set(false)
236
- html.required.set(true)
+ xml.required.set(true)
+ csv.required.set(false)
+ html.required.set(true)
237
238
239
0 commit comments