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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -