diff --git a/project/CrossDeps.scala b/project/CrossDeps.scala index 04cf9e3a8..25707d903 100644 --- a/project/CrossDeps.scala +++ b/project/CrossDeps.scala @@ -11,7 +11,7 @@ object CrossDeps { // The setting / .value hoop-and-loop is necessary because of the expansion of the %%% macro, which references // other settings. - def fastParse = setting("com.lihaoyi" %%% "fastparse" % "0.4.2") + def fastParse = setting("com.lihaoyi" %%% "fastparse" % SharedVersions.fastParse) def scalazCore = setting("org.scalaz" %%% "scalaz-core" % SharedVersions.scalaz) def scalaJsDom = setting("org.scala-js" %%% "scalajs-dom" % "0.9.2") def utest = setting("com.lihaoyi" %%% "utest" % "0.4.7") diff --git a/project/Deps.scala b/project/Deps.scala index ababae96a..24281954e 100644 --- a/project/Deps.scala +++ b/project/Deps.scala @@ -5,7 +5,7 @@ import sbt.Keys._ object Deps { def quasiQuotes = "org.scalamacros" %% "quasiquotes" % "2.1.0" - def fastParse = "com.lihaoyi" %% "fastparse" % "0.4.2" + def fastParse = "com.lihaoyi" %% "fastparse" % SharedVersions.fastParse def jsoup = "org.jsoup" % "jsoup" % "1.10.2" def scalaXml = "org.scala-lang.modules" %% "scala-xml" % "1.0.6" def scalazConcurrent = "org.scalaz" %% "scalaz-concurrent" % SharedVersions.scalaz diff --git a/project/Settings.scala b/project/Settings.scala index 99ed26085..3dbf960fd 100644 --- a/project/Settings.scala +++ b/project/Settings.scala @@ -88,7 +88,7 @@ object Settings { p.store(w, "Coursier properties") w.close() - println(s"Wrote $f") + state.value.log.info(s"Wrote $f") Seq(f) } diff --git a/project/SharedVersions.scala b/project/SharedVersions.scala index 0d282b606..359ed9abb 100644 --- a/project/SharedVersions.scala +++ b/project/SharedVersions.scala @@ -1,6 +1,7 @@ object SharedVersions { + def fastParse = "0.4.2" def http4s = "0.15.12a" def proguard = "5.3.3" def scalaz = "7.2.12"