mirror of https://github.com/sbt/sbt.git
Exempt out of -Xfuture in util-collection
This commit is contained in:
parent
dc410f9842
commit
e1c7f39e5a
|
|
@ -80,7 +80,9 @@ lazy val utilCollection = (project in internalPath / "util-collection").
|
||||||
settings(
|
settings(
|
||||||
commonSettings,
|
commonSettings,
|
||||||
Util.keywordsSettings,
|
Util.keywordsSettings,
|
||||||
name := "Util Collection"
|
name := "Util Collection",
|
||||||
|
scalacOptions --= // scalac 2.10 rejects some HK types under -Xfuture it seems..
|
||||||
|
(CrossVersion partialVersion scalaVersion.value collect { case (2, 10) => "-Xfuture" }).toList
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val utilApplyMacro = (project in internalPath / "util-appmacro").
|
lazy val utilApplyMacro = (project in internalPath / "util-appmacro").
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue