in kotlin-dsl the equivalent of ``` subprojects ...
# gradle
m
in kotlin-dsl the equivalent of
Copy code
subprojects {
    apply plugin: application
}
is
Copy code
subprojects {
    apply(plugin = "application")
}