Hi. I'd like to run my application without buildin...
# gradle
a
Hi. I'd like to run my application without building a distribution just with
gradlew run
, but I found that it doesn't pipe stdin into my app. I'm new to gradle so I googled it and found that I need smth like this:
Copy code
run {
    standardInput = <http://System.in|System.in>
}
Didn't find anything similar in kotlin DSL, but also found this: https://stackoverflow.com/questions/45747112/kotlin-and-gradle-reading-from-stdio. It says (said couple months ago) that this is not implemented yet. Has anybody more relevant information on this topic or some workaround?