浏览代码

sbt: add clean example (#6639)

Elijah Shackelford 3 年之前
父节点
当前提交
0387d6143c
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      pages/common/sbt.md

+ 5 - 1
pages/common/sbt.md

@@ -1,7 +1,7 @@
 # sbt
 
 > 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):
 
@@ -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}}`