chore(gradle): enable interactive program run

This commit is contained in:
2026-02-20 21:34:57 +03:00
parent c213f0c59f
commit 9a5cb2d5de

View File

@@ -47,3 +47,7 @@ tasks.named<Test>("test") {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}
tasks.withType<JavaExec> {
standardInput = System.`in`
}