From 0387d6143cbafec46ec80897ba56945961ccf9a3 Mon Sep 17 00:00:00 2001 From: Elijah Shackelford <33649649+eshack94@users.noreply.github.com> Date: Mon, 4 Oct 2021 15:41:27 -0400 Subject: [PATCH] sbt: add clean example (#6639) --- pages/common/sbt.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/sbt.md b/pages/common/sbt.md index 75d20f528..504e9d6f9 100644 --- a/pages/common/sbt.md +++ b/pages/common/sbt.md @@ -1,7 +1,7 @@ # sbt > Build tool for Scala and Java projects. -> More information: . +> More information: . - Start a REPL (interactive shell): @@ -11,6 +11,10 @@ `sbt new {{scala/hello-world.g8}}` +- Delete all generated files in the `target` directory: + +`sbt clean` + - Use the specified version of sbt: `sbt -sbt-version {{version}}`