blob: 0660e6d997d7ffa996a65715eb4224592028c0b9 [file] [log] [blame]
Igor Belikovd3a9c2b2017-01-11 16:19:07 +03001apply plugin: 'groovy'
2apply plugin: 'codenarc'
3
4def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/jcenter'
5
6sourceSets {
7 main {
8 groovy {
9 srcDirs = ['src', 'vars']
10 }
11 }
12}
13
14compileGroovy.enabled = false
15
16repositories {
17 maven {
18 url jcenterRepo
19 }
20}
21
22codenarc {
23 configFile = new File('codenarcRules.groovy')
24 reportFormat = 'text'
25}