Is there a less verbose way in the Kotlin DSL to g...
# gradle
i
Is there a less verbose way in the Kotlin DSL to get "src/main/kotlin", etc. than
kotlin.sourceSets["main"].kotlin.srcDirs
? E.g.:
Copy code
detekt {
	input = files(
		kotlin.sourceSets["main"].kotlin.srcDirs,
		kotlin.sourceSets["test"].kotlin.srcDirs)
}