Igor Belikov | d3a9c2b | 2017-01-11 16:19:07 +0300 | [diff] [blame^] | 1 | apply plugin: 'groovy' |
2 | apply plugin: 'codenarc' | ||||
3 | |||||
4 | def jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/jcenter' | ||||
5 | |||||
6 | sourceSets { | ||||
7 | main { | ||||
8 | groovy { | ||||
9 | srcDirs = ['src', 'vars'] | ||||
10 | } | ||||
11 | } | ||||
12 | } | ||||
13 | |||||
14 | compileGroovy.enabled = false | ||||
15 | |||||
16 | repositories { | ||||
17 | maven { | ||||
18 | url jcenterRepo | ||||
19 | } | ||||
20 | } | ||||
21 | |||||
22 | codenarc { | ||||
23 | configFile = new File('codenarcRules.groovy') | ||||
24 | reportFormat = 'text' | ||||
25 | } |