diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-11-24 19:34:33 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-11-24 19:34:33 +0000 |
commit | 5cdf680f9bad61cfff3defd67420c3d56e848036 (patch) | |
tree | 9f630e697e64ccc338e0b31073edf8330aa3d888 | |
parent | fc72e681017e4253980ba7943549f6716c959b6a (diff) | |
download | spacebeans-5cdf680f9bad61cfff3defd67420c3d56e848036.tar.gz spacebeans-5cdf680f9bad61cfff3defd67420c3d56e848036.zip |
Updated dependencies, scala version
-rw-r--r-- | build.sc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -8,7 +8,7 @@ import $ivy.`com.lihaoyi::mill-contrib-buildinfo:$MILL_VERSION` import mill.contrib.buildinfo.BuildInfo object server extends ScalaModule with ScalafmtModule with BuildInfo { - def scalaVersion = "2.13.6" + def scalaVersion = "2.13.7" def scalacOptions = Seq( // features @@ -22,10 +22,10 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo { ) def ivyDeps = Agg( - ivy"ch.qos.logback:logback-classic:1.2.4", - ivy"com.github.pureconfig::pureconfig:0.16.0", + ivy"ch.qos.logback:logback-classic:1.2.7", + ivy"com.github.pureconfig::pureconfig:0.17.1", ivy"com.github.scopt::scopt:4.0.1", - ivy"com.typesafe.akka::akka-stream:2.6.15", + ivy"com.typesafe.akka::akka-stream:2.6.17", ivy"org.bouncycastle:bcprov-jdk15to18:1.69", ivy"org.log4s::log4s:1.10.0" ) @@ -52,7 +52,7 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo { } object test extends Tests with TestModule.ScalaTest with ScalafmtModule { - def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.9") + def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.10") override def compile = T { reformat().apply() |