mirror of https://github.com/sbt/sbt.git
sbtn 1.9.0
This commit is contained in:
parent
cab5c48e24
commit
7256fb2725
|
|
@ -121,7 +121,7 @@ val root = (project in file(".")).
|
|||
file
|
||||
},
|
||||
// update sbt.sh at root
|
||||
sbtnVersion := "1.8.2",
|
||||
sbtnVersion := "1.9.0",
|
||||
sbtnJarsBaseUrl := "https://github.com/sbt/sbtn-dist/releases/download",
|
||||
sbtnJarsMappings := {
|
||||
val baseUrl = sbtnJarsBaseUrl.value
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ class InstallSbtnSpec extends AnyFlatSpec {
|
|||
"InstallSbtn" should "extract native sbtn" ignore
|
||||
withTemp(".zip") { tmp =>
|
||||
withTemp(".exe") { sbtn =>
|
||||
InstallSbtn.extractSbtn(term, "1.8.2", tmp, sbtn)
|
||||
InstallSbtn.extractSbtn(term, "1.9.0", tmp, sbtn)
|
||||
val tmpDir = Files.createTempDirectory("sbtn-test").toRealPath()
|
||||
Files.createDirectories(tmpDir.resolve("project"))
|
||||
val foo = tmpDir.resolve("foo")
|
||||
|
|
@ -46,7 +46,7 @@ class InstallSbtnSpec extends AnyFlatSpec {
|
|||
IO.write(tmpDir.resolve("build.sbt").toFile, build)
|
||||
IO.write(
|
||||
tmpDir.resolve("project").resolve("build.properties").toFile,
|
||||
"sbt.version=1.8.0"
|
||||
"sbt.version=1.9.0"
|
||||
)
|
||||
try {
|
||||
val proc =
|
||||
|
|
|
|||
Loading…
Reference in New Issue