blob: 42e92a96a452116ae06e8440cba49208eb726c27 [file] [log] [blame]
apply plugin: 'groovy'
apply plugin: 'codenarc'
def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/artifactory/jcenter'
dependencies{
compile 'org.codehaus.groovy:groovy-all:2.3.6'
}
sourceSets {
main {
groovy {
srcDirs = ['.']
}
}
}
compileGroovy.enabled = false
repositories {
maven {
url jcenterRepo
}
}
codenarc {
configFile = new File('codenarcRules.groovy')
reportFormat = 'text'
}