blob: 4eb83d0dde38d2a42bbf09988260041a84b88585 [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 {
Jakub Joseffcb615e2017-04-10 14:34:40 +02009 srcDirs = ['.']
Jakub Josefd75c1d52017-03-15 18:06:03 +010010 }
11 }
12}
13
Jakub Joseffcb615e2017-04-10 14:34:40 +020014compileGroovy.enabled = false
Jakub Josefd75c1d52017-03-15 18:06:03 +010015
16repositories {
17 maven {
18 url jcenterRepo
19 }
20}
21
22codenarc {
23 configFile = new File('codenarcRules.groovy')
24 reportFormat = 'text'
25}