Skip to content

Commit a20e3aa

Browse files
committed
Cleanup gradle warnings
1 parent eebcb3e commit a20e3aa

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ tasks.register('bundle', Bundle) {
147147
}
148148

149149
license {
150-
header project.file("config/license/HEADER")
150+
header = project.file("config/license/HEADER")
151151
ext.year = Calendar.getInstance().get(Calendar.YEAR)
152-
skipExistingHeaders true
153-
ignoreFailures true
152+
skipExistingHeaders = true
153+
ignoreFailures = true
154154
excludes(["**/*.md", "**/*.txt"])
155155
}
156156

@@ -231,9 +231,9 @@ jacocoTestReport {
231231
dependsOn testNG
232232

233233
reports {
234-
xml.required.set(true)
235-
csv.required.set(false)
236-
html.required.set(true)
234+
xml.required.set(true)
235+
csv.required.set(false)
236+
html.required.set(true)
237237
}
238238
}
239239

0 commit comments

Comments
 (0)