blob: bd893964803a54f59db00f959b4372ad8c746ab8 [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
Jakub Josef92cbacc2017-05-24 18:22:14 +02006dependencies{
7 compile 'org.codehaus.groovy:groovy-all:2.3.6'
8}
9
Jakub Josefd75c1d52017-03-15 18:06:03 +010010sourceSets {
11 main {
12 groovy {
Jakub Joseffcb615e2017-04-10 14:34:40 +020013 srcDirs = ['.']
Jakub Josefd75c1d52017-03-15 18:06:03 +010014 }
15 }
16}
17
Jakub Josefd75c1d52017-03-15 18:06:03 +010018repositories {
19 maven {
20 url jcenterRepo
21 }
22}
23
24codenarc {
25 configFile = new File('codenarcRules.groovy')
26 reportFormat = 'text'
27}