fix-commodore (#27)

This commit is contained in:
Alexander Söderberg 2020-10-06 12:39:06 +02:00 committed by GitHub
parent 8f8f98b189
commit c3469706ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 435 additions and 11 deletions

View file

@ -21,6 +21,16 @@ checkstyle {
configFile file('config/checkstyle/checkstyle.xml')
}
gradle.taskGraph.whenReady {
gradle.taskGraph.allTasks.each {
if (it.project.name.contains('example')) {
it.onlyIf {
project.hasProperty('compile-examples')
}
}
}
}
allprojects {
apply plugin: 'idea'
apply plugin: 'checkstyle'