Skip to content

Instantly share code, notes, and snippets.

@mladenrakonjac
Created September 13, 2016 09:10
Show Gist options
  • Save mladenrakonjac/cd95d688142132be634dac53ed5cb097 to your computer and use it in GitHub Desktop.
Save mladenrakonjac/cd95d688142132be634dac53ed5cb097 to your computer and use it in GitHub Desktop.
apply plugin: 'checkstyle'
task checkstyle(type: Checkstyle){
description 'Checks if the code meets standards'
group 'verification'
configFile file('./qa-check/checkstyle.xml')
source 'src'
include '**/*.java'
exclude '**/gen/**'
classpath = files()
ignoreFailures = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment