sbt
Начало работы с ежедневной разработкой
Поиск…
Ежедневный пример непрерывного развития с Scala
# install sbt with homebrew (if you didn't)
brew install sbt
# - create a new scala project
# - name your project name when asked like: hello-world
sbt new sbt/scala-seed.g8
# go to the new project directory that you named
cd hello-world
# run sbt to open the sbt shell
sbt
# run your project in continuous running mode
~ run
# to continuously see the test outputs
# open up a new terminal tab, run sbt, type:
~ test
# to continuously compile
# open up a new terminal tab, run sbt, type:
~ compile
~ используется для непрерывных операций в sbt, как показано выше.
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow