Jakub Josef | d75c1d5 | 2017-03-15 18:06:03 +0100 | [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 { |
Jakub Josef | fcb615e | 2017-04-10 14:34:40 +0200 | [diff] [blame] | 9 | srcDirs = ['.'] |
Jakub Josef | d75c1d5 | 2017-03-15 18:06:03 +0100 | [diff] [blame] | 10 | } |
| 11 | } |
| 12 | } |
| 13 | |
Jakub Josef | fcb615e | 2017-04-10 14:34:40 +0200 | [diff] [blame] | 14 | compileGroovy.enabled = false |
Jakub Josef | d75c1d5 | 2017-03-15 18:06:03 +0100 | [diff] [blame] | 15 | |
| 16 | repositories { |
| 17 | maven { |
| 18 | url jcenterRepo |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | codenarc { |
| 23 | configFile = new File('codenarcRules.groovy') |
| 24 | reportFormat = 'text' |
| 25 | } |