Skip to content

Commit

Permalink
Avoid resolution of codenarc dependencies at configuration time
Browse files Browse the repository at this point in the history
  • Loading branch information
melix committed Dec 4, 2016
1 parent 78918eb commit 93dad60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/quality.gradle
Expand Up @@ -60,7 +60,7 @@ allprojects {
project(':groovy-templates').sourceSets.main.output +
project(':groovy-xml').sourceSets.main.output +
configurations.compile +
files(configurations.codenarc.findAll { !(it.name =~ /groovy|junit/)})
files { configurations.codenarc.findAll { !(it.name =~ /groovy|junit/)} }
}

tasks.withType(Checkstyle) {
Expand Down

0 comments on commit 93dad60

Please sign in to comment.