<@U5R5FGVH7> If you use application plugin and “ru...
# gradle
g
@napperley If you use application plugin and “run” task:
Copy code
tasks {
    "run"(JavaExec::class) {
        args = listOf("a", "b", "c")
    }
}
//or
val run: JavaExec by tasks
run.args = listOf("a", "b", "c")
👍 1