blob: 96cb0ce639ef3d74ddfb8f248488314b1e4f05bb [file] [log] [blame]
version = '1.0'
group = 'com.mirantis'
apply plugin: 'groovy'
apply plugin: 'codenarc'
def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/artifactory/jcenter'
sourceSets {
main {
groovy {
srcDirs = ['src', 'vars']
}
}
}
compileGroovy.enabled = false
repositories {
maven {
url jcenterRepo
}
}
codenarc {
configFile = new File('codenarcRules.groovy')
reportFormat = 'text'
}