Testing gitlint

This commit is contained in:
dvanaken
2019-10-23 15:59:22 -04:00
committed by Dana Van Aken
parent 9f3fe29c27
commit 5c855faa3e
11 changed files with 539 additions and 241 deletions

View File

@@ -1,5 +1,4 @@
plugins {
id "de.undercouch.download" version "3.3.0"
id "com.github.spotbugs" version "2.0.0"
}
@@ -77,14 +76,3 @@ tasks.withType(com.github.spotbugs.SpotBugsTask) {
}
}
import de.undercouch.gradle.tasks.download.Download
task downloadJars(type: Download) {
src ([
'https://github.com/google/google-java-format/releases/download/google-java-format-1.5/google-java-format-1.5-all-deps.jar',
'https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.8/checkstyle-8.8-all.jar'
])
dest libsDir
overwrite false
}
build.finalizedBy(downloadJars)