Newer
Older
labs / tiddlers / content / review / java_exercises / _Review_Gradle.md
@Mark George Mark George on 15 Jul 2021 315 bytes Add review exercises

Create a new project for these exercises.

You will need to modify the build.gradle for the project to instruct Gradle to pass console input through to your programs. The following is the complete build.gradle that you will need:

plugins {
    id "application"
}

run {
    standardInput = System.in
}