blob: 96cb0ce639ef3d74ddfb8f248488314b1e4f05bb [file] [log] [blame]
Jakub Josef3691b082017-05-24 19:09:11 +02001version = '1.0'
2group = 'com.mirantis'
3
Igor Belikovd3a9c2b2017-01-11 16:19:07 +03004apply plugin: 'groovy'
5apply plugin: 'codenarc'
6
Dmitry Burmistrov287b7ed2021-05-17 19:01:16 +04007def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/artifactory/jcenter'
Igor Belikovd3a9c2b2017-01-11 16:19:07 +03008
9sourceSets {
10 main {
11 groovy {
12 srcDirs = ['src', 'vars']
13 }
14 }
15}
16
17compileGroovy.enabled = false
18
19repositories {
20 maven {
21 url jcenterRepo
22 }
23}
24
25codenarc {
26 configFile = new File('codenarcRules.groovy')
27 reportFormat = 'text'
28}