How to check sbt version?
How to check sbt version?
$ sbt sbtVersion
This prints the sbt version used in your current project, or if it is a multi-module project for each module.
$ sbt inspect sbtVersion
[info] Set current project to jacek (in build file:/Users/jacek/)
[info] Setting: java.lang.String = 0.13.1
[info] Description:
[info] Provides the version of sbt. This setting should be not be modified.
[info] Provided by:
[info] */*:sbtVersion
[info] Defined at:
[info] (sbt.Defaults) Defaults.scala:68
[info] Delegates:
[info] *:sbtVersion
[info] {.}/*:sbtVersion
[info] */*:sbtVersion
[info] Related:
[info] */*:sbtVersion
You may also want to use sbt about
that (copying Mark Harrahs comment):
The about command was added recently to try to succinctly print the
most relevant information, including the sbt version.
sbt about
then enter to get SBT version
How to check sbt version?
Running the command, sbt sbt-version will simply output your current directory and the version number.
$ sbt sbt-version
[info] Set current project to spark (in build file:/home/morgan/code/spark/)
[info] 0.13.8
Related posts
- ssl – Issues with installing python libraries on Windows : CondaHTTPError: HTTP 000 CONNECTION FAILED for url
- windows – Python executables: py2exe or PyInstaller?
- windows – Open File in Another Directory (Python)
- How to use Pythons easy_install on Windows … its not so easy
- Python version 2.7 required, which was not found in the registry error when attempting to install netCDF4 on Windows 8
- How can I find where Python is installed on Windows?
- batch file – How Should I Set Default Python Version In Windows?