blob: 3847c1235aea0fe8463c8cd9a1d844ee78e0b475 [file] [log] [blame]
Jakub Josefd75c1d52017-03-15 18:06:03 +01001apply 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 = true
15
16repositories {
17 maven {
18 url jcenterRepo
19 }
20}
21
22codenarc {
23 configFile = new File('codenarcRules.groovy')
24 reportFormat = 'text'
25}