mirror of https://github.com/sbt/sbt.git
Add sbt io to the sbt project
Without this, the sbt io version is used by the compiler which means that apis added in later versions of io are not available. I don't understand why the transitive dependency on io is not used, but this fixes the issue.
This commit is contained in:
parent
1489879b80
commit
798145e81e
|
|
@ -648,7 +648,7 @@ lazy val sbtProj = (project in file("sbt"))
|
|||
Test / run / outputStrategy := Some(StdoutOutput),
|
||||
Test / run / fork := true,
|
||||
)
|
||||
.configure(addSbtCompilerBridge)
|
||||
.configure(addSbtIO, addSbtCompilerBridge)
|
||||
|
||||
lazy val sbtBig = (project in file(".big"))
|
||||
.dependsOn(sbtProj)
|
||||
|
|
|
|||
Loading…
Reference in New Issue