Sergey Otpuschennikov | aad1ae0 | 2020-09-11 19:33:51 +0400 | [diff] [blame] | 1 | apply plugin: 'groovy' |
2 | apply plugin: 'codenarc' | ||||
3 | |||||
4 | String jcenterRepo = System.getenv('ARTIFACTORY_URL') ?: 'https://artifactory.mcp.mirantis.net/jcenter' | ||||
5 | String rulesFile = 'codenarcRules.groovy' | ||||
6 | |||||
7 | repositories { | ||||
8 | maven { | ||||
9 | url jcenterRepo | ||||
10 | } | ||||
11 | } | ||||
12 | |||||
13 | |||||
14 | sourceSets { | ||||
15 | main { | ||||
16 | groovy { | ||||
17 | exclude rulesFile | ||||
18 | srcDir '.' | ||||
19 | } | ||||
20 | } | ||||
21 | } | ||||
22 | |||||
23 | compileGroovy.enabled = false | ||||
24 | |||||
25 | codenarc { | ||||
26 | configFile = new File(rulesFile) | ||||
27 | reportFormat = 'console' | ||||
28 | } |