Console application with Java and gradle

By default, the system.in of your Gradle build is not wired up with the system.in of the run (JavaExec) task. You can do the following:

build.gradle (Groovy syntax):

run {
    standardInput = System.in
}

build.gradle.kts (Kotlin DSL syntax):

tasks.named<JavaExec>("run") {
    standardInput = System.`in`
}

Leave a Comment