blob: 42e92a96a452116ae06e8440cba49208eb726c27 [file] [log] [blame]
Jakub Josefd75c1d52017-03-15 18:06:03 +01001apply plugin: 'groovy'
2apply plugin: 'codenarc'
3
Denis Egorenko0f1c8492021-05-18 12:45:31 +04004def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/artifactory/jcenter'
Jakub Josefd75c1d52017-03-15 18:06:03 +01005
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 Josef04a692c2017-05-24 18:34:28 +020018compileGroovy.enabled = false
19
Jakub Josefd75c1d52017-03-15 18:06:03 +010020repositories {
21 maven {
22 url jcenterRepo
23 }
24}
25
26codenarc {
27 configFile = new File('codenarcRules.groovy')
28 reportFormat = 'text'
29}