From 3f75e6902b2fe4d184f0e3f0b7a8ab8eca4831bd Mon Sep 17 00:00:00 2001 From: "Aaron S. Hawley" Date: Fri, 19 Apr 2019 13:15:55 -0400 Subject: [PATCH] The -Xfuture option was deprecated --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 744937ce8..e81f74f45 100644 --- a/build.sbt +++ b/build.sbt @@ -13,8 +13,8 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform) name := "scala-xml", version := "2.0.0-SNAPSHOT", - // Compiler team advised avoiding the -Xfuture option for releases. - // The output with -Xfuture should be periodically checked, though. + // Compiler team advised avoiding the -Xsource:2.14 option for releases. + // The output with -Xsource should be periodically checked, though. scalacOptions ++= "-deprecation:false -feature -Xlint:-stars-align,-nullary-unit,_".split("\\s+").to[Seq], scalacOptions in Test += "-Xxml:coalescing",