1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 18:55:34 +02:00

sbt: add clean example (#6639)

This commit is contained in:
Elijah Shackelford 2021-10-04 15:41:27 -04:00 committed by GitHub
parent 20dd08635d
commit 0387d6143c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
# sbt # sbt
> Build tool for Scala and Java projects. > Build tool for Scala and Java projects.
> More information: <https://www.scala-sbt.org/1.0/docs/>. > More information: <https://www.scala-sbt.org/1.x/docs/>.
- Start a REPL (interactive shell): - Start a REPL (interactive shell):
@ -11,6 +11,10 @@
`sbt new {{scala/hello-world.g8}}` `sbt new {{scala/hello-world.g8}}`
- Delete all generated files in the `target` directory:
`sbt clean`
- Use the specified version of sbt: - Use the specified version of sbt:
`sbt -sbt-version {{version}}` `sbt -sbt-version {{version}}`