mirror of https://github.com/CrimsonTome/tldr.git
25 lines
452 B
Markdown
25 lines
452 B
Markdown
# sbt
|
|
|
|
> Build tool for Scala and Java projects.
|
|
> More information: <https://www.scala-sbt.org/1.0/docs/>.
|
|
|
|
- Start the SBT interactive shell (REPL):
|
|
|
|
`sbt`
|
|
|
|
- Create a new Scala project from an existing Giter8 template hosted on GitHub:
|
|
|
|
`sbt new {{scala/hello-world.g8}}`
|
|
|
|
- Use the specified version of sbt:
|
|
|
|
`sbt -sbt-version {{version}}`
|
|
|
|
- Use a specific jar file as the sbt launcher:
|
|
|
|
`sbt -sbt-jar {{path}}`
|
|
|
|
- List all sbt options:
|
|
|
|
`sbt -h`
|