Tweak build

This commit is contained in:
Alexandre Archambault 2017-05-15 15:32:53 +02:00
parent 12e9ca3e08
commit 65a0b035d0
4 changed files with 4 additions and 3 deletions

View File

@ -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")

View File

@ -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

View File

@ -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)
}

View File

@ -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"