diff --git a/build.gradle b/build.gradle index 0d6c91b..c2caa18 100644 --- a/build.gradle +++ b/build.gradle @@ -71,14 +71,14 @@ bintray { task javadocJar(type: Jar, dependsOn: javadoc) { group = 'Build' description = 'Builds an archive of the javadoc docs.' - classifier = 'javadoc' + archiveClassifier = 'javadoc' from javadoc.destinationDir } task sourceJar(type: Jar) { group = 'Build' description = 'Builds an archive of the source code.' - classifier = 'sources' + archiveClassifier = 'sources' from sourceSets.main.allSource } @@ -151,16 +151,11 @@ tasks.withType(SpotBugsTask) { tasks.withType(Checkstyle) { reports { - xml.enabled false - html.enabled true - //html.stylesheet resources.text.fromFile('config/xsl/checkstyle-custom.xsl') + xml.enabled = false + html.enabled = true } } -checkstyle { - toolVersion "8.18" -} - compileJava { options.compilerArgs.add('-proc:none') }