Created
February 24, 2012 00:45
Revisions
-
skhatri revised this gist
Feb 24, 2012 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -28,9 +28,7 @@ task checkstyleReport << { ant.xslt(in: "$buildDir/reports/checkstyle/${checkType}.xml", style:"config/checkstyle/checkstyle.xsl", out:"$buildDir/reports/checkstyle/checkstyle_${checkType}.html" ) } } -
skhatri created this gist
Feb 24, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,51 @@ apply plugin: 'checkstyle' checkstyleMain { ignoreFailures = false reports { include ( '**/*.java') xml { destination "${rootProject.buildDir}/reports/checkstyle/main.xml" } } configFile = file('./config/checkstyle/checkstyle.xml') } checkstyleTest { ignoreFailures = false reports { include ( '**/*.java') xml { destination "${rootProject.buildDir}/reports/checkstyle/test.xml" } } configFile = file('./config/checkstyle/checkstyle-test.xml') } task checkstyleReport << { if (file("$buildDir/reports/checkstyle/${checkType}.xml").exists()) { ant.xslt(in: "$buildDir/reports/checkstyle/${checkType}.xml", style:"config/checkstyle/checkstyle.xsl", out:"$buildDir/reports/checkstyle/checkstyle_${checkType}.html" ) { param(name:"project.name",expression:"${rootProject.name}") } } } task quality(dependsOn:['checkstyleMain', 'checkstyleTest']) gradle.taskGraph.afterTask {Task task, TaskState state -> if(state.failure) { if (task.name in ['checkstyleMain', 'checkstyleTest']) { checkstyleReport { def matcher = task.name =~ /^checkstyle(.*)$/ if (matcher.matches()) { checkType = matcher.group(1).toLowerCase() } } checkstyleReport.execute() } } }