Removed checkstyle, using IDEA default code format.

This commit is contained in:
Erik C. Thauvin 2021-06-18 21:31:40 -07:00
parent fdd1fb7e42
commit 7c2ad09ff1
9 changed files with 56 additions and 306 deletions

View file

@ -1,6 +1,5 @@
plugins {
id 'application'
id 'checkstyle'
id 'com.github.ben-manes.versions' version '0.39.0'
id 'idea'
id 'io.gitlab.arturbosch.detekt' version '1.17.1'
@ -153,27 +152,19 @@ jacoco {
}
jacocoTestReport {
dependsOn(test)
dependsOn test
reports {
html.enabled = true
xml.enabled = true
}
}
tasks.withType(Checkstyle) {
reports {
xml.enabled = false
html.enabled = true
html.required = true
xml.required = true
}
}
tasks.sonarqube {
dependsOn('jacocoTestReport')
dependsOn 'jacocoTestReport'
}
task copyToDeploy(type: Copy) {
from('properties')
from jar
from('properties', jar)
into deployDir
}