mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-05 00:38:14 +00:00
21 lines
514 B
Groovy
21 lines
514 B
Groovy
allprojects {
|
|
if (it.pluginManager.hasPlugin('kotlin') || it.pluginManager.hasPlugin('apollo-plugin')) {
|
|
|
|
}
|
|
}
|
|
|
|
gradle.projectsEvaluated {
|
|
configure(subprojects.findAll { it.pluginManager.hasPlugin('kotlin') }) {
|
|
apply plugin: 'org.jmailen.kotlinter'
|
|
|
|
kotlinter {
|
|
ignoreFailures = true
|
|
indentSize = 4
|
|
continuationIndentSize = 4
|
|
reporters = ['checkstyle', 'plain']
|
|
}
|
|
|
|
kotlin { experimental { coroutines 'enable' } }
|
|
}
|
|
}
|