scala - running 'sbt new' noninteractively -


sbt new default prompts user fill in various values.

is there way accept defaults noninteractively, or specify values on command-line?

yes, can pass parameters flags. instance how call scalafix template non-interactively.

sbt new scalacenter/scalafix.g8 --rewrite="reponame" --version="v1.0" 

Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -