How do we specify parameters when running a main class from Activator UI?
Surely there's a way to do that, right?
I'm using the latest one to date, 1.2.10
Thanks in advance, Raka
As far as I know you can't specify parameters with activator, however you can use sbt for that:
sbt "run param1 param2"
or if you also want to specify the class name:
sbt "runMain my.class.Name param1 param2"
Edit: Actually the same thing can be executed from activator:
activator "run param1 param2"
or
activator "runMain my.class.Name param1 param2"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With