diff --git a/project/build.sbt b/project/build.sbt index 6bb9a065..4f90b20e 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,7 @@ -libraryDependencies ++= - Seq("com.typesafe" % "config" % "1.4.3") +libraryDependencies ++= Seq( + "com.typesafe" % "config" % "1.4.3", + // sbt-native-packager and sbt-github-pages pull in an incompatible + // version of sbt-io which will break the build as soon as the + // sbt-bloop plugin is also present + "org.scala-sbt" %% "io" % sbtVersion.value +)