loke
12/02/2024, 3:30 PMapplication
plugin, I can then run the application using ./gradlew modulename:run
. Is there a way to pass commandline options to the program? ./gradlew modulename:run --some-option
doesn't work. This just passes --some-option
to gradle, and not my application.Vampire
12/02/2024, 3:34 PM./gradlew help --task modulename:run
😉Vampire
12/02/2024, 3:36 PMloke
12/02/2024, 3:40 PMloke
12/02/2024, 3:41 PM