Skip to content

Commit

Permalink
Disable checkstyle due to classloading issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Dec 8, 2014
1 parent 66146cd commit 34b33ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gradle/code-quality.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
apply plugin: 'jdepend'
apply plugin: 'checkstyle'
// apply plugin: 'checkstyle'
apply plugin: 'com.github.hierynomus.license'

def configDir = new File(buildscript.sourceFile.parentFile.parentFile, 'config')
ext.checkstyleConfigDir = "$configDir/checkstyle"

/*
checkstyle {
toolVersion = '6.0'
configFile = new File(checkstyleConfigDir, 'checkstyle.xml')
configProperties.checkstyleConfigDir = checkstyleConfigDir
}
*/

if (project.hasProperty('findBugsEnabled') && project.findBugsEnabled.toBoolean()) {
apply plugin: 'findbugs'
Expand Down

0 comments on commit 34b33ec

Please sign in to comment.