blob: c413b6fa99588ffb91481cda6d09b7aed06dcf3a [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
7def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/jcenter'
8
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}