sbt: use new sbt command naming convention (#8426)

This commit is contained in:
Reza Hamouleh 2019-11-28 20:10:34 +03:30 committed by Marc Cornellà
commit 16154453ea
3 changed files with 20 additions and 20 deletions

View file

@ -6,23 +6,23 @@ _sbt_commands=(
'clean:delete files produced by the build'
'compile:compile sources'
'console:start the Scala REPL with project classes on the classpath'
'console-quick:start the Scala REPL with project deps on the classpath'
'console-project:start the Scala REPL w/sbt+build-def on the classpath'
'consoleQuick:start the Scala REPL with project deps on the classpath'
'consoleProject:start the Scala REPL w/sbt+build-def on the classpath'
'dist:generate distribution artifacts'
'dist\:clean:clean distribution artifacts'
'doc:generate API documentation'
'gen-idea:generate Intellij Idea project files'
'genIdea:generate Intellij Idea project files'
'package:produce the main artifact, such as a binary jar'
'package-doc:produce a doc artifact, such as a jar containing API docs'
'package-src:produce a source artifact, such as a jar containing sources'
'packageDoc:produce a doc artifact, such as a jar containing API docs'
'packageSrc:produce a source artifact, such as a jar containing sources'
'publish:publish artifacts to a repository'
'publish-local:publish artifacts to the local repository'
'publish-m2:publish artifacts to the local Maven 2 repository'
'publishLocal:publish artifacts to the local repository'
'publishM2:publish artifacts to the local Maven 2 repository'
'run:run a main class'
'run-main:run the main class selected by the first argument'
'runMain:run the main class selected by the first argument'
'test:execute all tests'
'test-only:execute the tests provided as arguments'
'test-quick:execute previously failed tests'
'testOnly:execute the tests provided as arguments'
'testQuick:execute previously failed tests'
'update:resolve and optionally retrieve dependencies'
)