File tree 2 files changed +9
-7
lines changed
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 5
5
6
6
- Configurable Java version: supports OpenJDK, GraalVM, Zulu and any other Java
7
7
version that's installable via Jabba.
8
- - The ` sbt ` command is installed using the
9
- [ paulp/sbt-extras] ( https://github.com/paulp/sbt-extras/ ) launcher.
10
- - For faster startup, the ` csbt ` command is installed using the Coursier-based
11
- [ coursier/sbt-extras] ( https://github.com/coursier/sbt-extras/ ) launcher. This
12
- launcher does not work with all builds, only use ` csbt ` if you know what you
13
- are doing.
14
8
- Cross-platform: works on Linux, macOS, Windows.
9
+ - The ` sbt ` command is provided, with the official sbt launch script.
10
+ - The following alternate sbt launch scripts are also provided:
11
+ - ` sbtx ` runs the [ sbt-extras] ( https://github.com/dwijnand/sbt-extras/ ) launcher.
12
+ - ` csbt ` runs the [ Coursier-based sbt-extras] ( https://github.com/coursier/sbt-extras/ ) launcher.
15
13
16
14
## Usage:
17
15
Original file line number Diff line number Diff line change @@ -114,9 +114,13 @@ function installSbt() {
114
114
core . startGroup ( "Install sbt" ) ;
115
115
core . addPath ( bin ) ;
116
116
curl (
117
- "https://raw.githubusercontent.com/paulp /sbt-extras/master /sbt" ,
117
+ "https://raw.githubusercontent.com/sbt /sbt/develop /sbt" ,
118
118
path . join ( bin , "sbt" )
119
119
) ;
120
+ curl (
121
+ "https://raw.githubusercontent.com/dwijnand/sbt-extras/master/sbt" ,
122
+ path . join ( bin , "sbtx" )
123
+ ) ;
120
124
curl (
121
125
"https://raw.githubusercontent.com/coursier/sbt-extras/master/sbt" ,
122
126
path . join ( bin , "csbt" )
You can’t perform that action at this time.
0 commit comments