diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-07-24 17:44:01 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-07-24 17:44:01 +0100 |
commit | 33814c535e783c1faf99d5721d08e14b1cb62a7c (patch) | |
tree | e409be7ed8e4d85491906586c5990210e0c87ec0 | |
parent | f3a123319b9e7136a28c96851a21ed62cfe53ad6 (diff) | |
download | spacebeans-33814c535e783c1faf99d5721d08e14b1cb62a7c.tar.gz spacebeans-33814c535e783c1faf99d5721d08e14b1cb62a7c.zip |
Updated versions to latest
-rw-r--r-- | build.sc | 16 | ||||
-rwxr-xr-x | mill | 2 |
2 files changed, 9 insertions, 9 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.5" + def scalaVersion = "2.13.6" def scalacOptions = Seq( // features @@ -22,12 +22,12 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo { ) def ivyDeps = Agg( - ivy"ch.qos.logback:logback-classic:1.2.3", - ivy"com.github.pureconfig::pureconfig:0.14.1", - ivy"com.github.scopt::scopt:4.0.0", - ivy"com.typesafe.akka::akka-stream:2.6.13", - ivy"org.bouncycastle:bcprov-jdk15to18:1.68", - ivy"org.log4s::log4s:1.9.0" + ivy"ch.qos.logback:logback-classic:1.2.4", + ivy"com.github.pureconfig::pureconfig:0.16.0", + ivy"com.github.scopt::scopt:4.0.1", + ivy"com.typesafe.akka::akka-stream:2.6.15", + ivy"org.bouncycastle:bcprov-jdk15to18:1.69", + ivy"org.log4s::log4s:1.10.0" ) override def compile = T { @@ -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.5") + def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.9") override def compile = T { reformat().apply() @@ -3,7 +3,7 @@ # This is a wrapper script, that automatically download mill from GitHub release pages # You can give the required mill version with MILL_VERSION env variable # If no version is given, it falls back to the value of DEFAULT_MILL_VERSION -DEFAULT_MILL_VERSION=0.9.8 +DEFAULT_MILL_VERSION=0.9.9 set -e |