apply plugin: 'groovy' | |
apply plugin: 'codenarc' | |
String jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/jcenter' | |
String rulesFile = 'codenarcRules.groovy' | |
repositories { | |
maven { | |
url jcenterRepo | |
} | |
} | |
sourceSets { | |
main { | |
groovy { | |
exclude rulesFile | |
srcDir '.' | |
} | |
} | |
} | |
compileGroovy.enabled = false | |
codenarc { | |
configFile = new File(rulesFile) | |
reportFormat = 'console' | |
} |