holgerbrandl
04/26/2018, 12:15 PMbuild.gradle.kts
with
...
apply {
plugin("kotlin")
plugin("application")
}
val mainClassName = "com.github.holgerbrandl.Tester"
...
I get a
Execution failed for task ':run'.
14:13:23.476 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] > No main class specified
why? How should I set mainClassName
?