If you apply the `application` plugin using the `p...
# gradle
e
If you apply the
application
plugin using the
plugins {}
block instead you could make it simpler:
Copy code
plugins {
    application
}

application {
    mainClassName = "com.github.holgerbrandl.Tester"
}
Also see https://github.com/gradle/kotlin-dsl/blob/master/doc/getting-started/Configuring-Plugins.md
👍 1
😀 1