diff options
author | Reza Hamouleh <satrap92@gmail.com> | 2019-11-28 20:10:34 +0330 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-11-28 17:40:34 +0100 |
commit | 16154453ea701772acd144f22d3ddf9b6f3a40d3 (patch) | |
tree | 5712751a57ddc5961ca5a8c4c35fb78d060b2f8b /plugins/sbt/README.md | |
parent | 6390afd6de2978ca19920adb4d8958c1ee788f49 (diff) | |
download | zsh-16154453ea701772acd144f22d3ddf9b6f3a40d3.tar.gz zsh-16154453ea701772acd144f22d3ddf9b6f3a40d3.tar.bz2 zsh-16154453ea701772acd144f22d3ddf9b6f3a40d3.zip |
sbt: use new sbt command naming convention (#8426)
Diffstat (limited to 'plugins/sbt/README.md')
-rw-r--r-- | plugins/sbt/README.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/sbt/README.md b/plugins/sbt/README.md index f1a5753b9..f0201938e 100644 --- a/plugins/sbt/README.md +++ b/plugins/sbt/README.md @@ -17,16 +17,16 @@ plugins=(... sbt) | sbcln | `sbt clean` | Deletes all generated files | | sbcc | `sbt clean compile` | Deletes generated files, compiles the main sources | | sbco | `sbt console` | Starts Scala with the compiled sources and all dependencies | -| sbcq | `sbt console-quick` | Starts Scala with all dependencies | -| sbcp | `sbt console-project` | Starts Scala with sbt and the build definitions | +| sbcq | `sbt consoleQuick` | Starts Scala with all dependencies | +| sbcp | `sbt consoleProject` | Starts Scala with sbt and the build definitions | | sbd | `sbt doc` | Generates API documentation for Scala source files | | sbdc | `sbt dist:clean` | Deletes the distribution packages | | sbdi | `sbt dist` | Creates the distribution packages | -| sbgi | `sbt gen-idea` | Create Idea project files | +| sbgi | `sbt genIdea` | Create Idea project files | | sbp | `sbt publish` | Publishes artifacts to the repository | -| sbpl | `sbt publish-local` | Publishes artifacts to the local Ivy repository | +| sbpl | `sbt publishLocal` | Publishes artifacts to the local Ivy repository | | sbr | `sbt run` | Runs the main class for the project | -| sbrm | `sbt run-main` | Runs the specified main class for the project | +| sbrm | `sbt runMain` | Runs the specified main class for the project | | sbu | `sbt update` | Resolves and retrieves external dependencies | | sbx | `sbt test` | Compiles and runs all tests | | sba | `sbt assembly` | Create a fat JAR with all dependencies | |