From c76d2624f931a2b75453f39dcaaf750bf4282a44 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Thu, 6 Jul 2017 13:30:15 +0100 Subject: [PATCH] No need for util-collection on Scala 2.10 anymore We still publish parts of sbt for Scala 2.10 for compiler-bridge reasons in Zinc. However util-collection is now becoming an sbt-only module, so it won't need to continue to cross-build to Scala 2.10! Its new dependency util-position which is used by lm also isn't a dependency of the compiler-bridge, so also doesn't need to be cross-built to Scala 2.10. --- build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sbt b/build.sbt index 488e6af39..86b90c4a0 100644 --- a/build.sbt +++ b/build.sbt @@ -85,7 +85,6 @@ lazy val utilCollection = (project in internalPath / "util-collection"). dependsOn(utilPosition, utilTesting % Test). settings( commonSettings, - crossScalaVersions := Seq(scala210, scala211, scala212), Util.keywordsSettings, name := "Util Collection", libraryDependencies ++= Seq(sjsonnew.value, sjsonnewScalaJson.value % Test)