Run Sbt Command Non-Interactively
Instead of using sbt in interactive mode:
Prefix Command with Project Name
sbt myproject/test
Quote Parameters
Useful for example when we want to pass a different port to run
sbt "project myproject" "run 9001"
Instead of using sbt in interactive mode:
sbt myproject/test
Useful for example when we want to pass a different port to run
sbt "project myproject" "run 9001"