From 798145e81e6bb6e6fb404656d66eb71db4665a24 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Mon, 18 Feb 2019 14:00:48 -0800 Subject: [PATCH] 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. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1f13669c9..d761f7f1d 100644 --- a/build.sbt +++ b/build.sbt @@ -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)