aboutsummaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.sc b/build.sc
index 1afcfbd..c1f152d 100644
--- a/build.sc
+++ b/build.sc
@@ -2,13 +2,13 @@ import mill._
import mill.scalalib._
import scalafmt._
-import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version_mill0.9:0.1.1`
+import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.1.4`
import de.tobiasroeser.mill.vcs.version.VcsVersion
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.7"
+ def scalaVersion = "2.13.8"
def scalacOptions =
Seq(
@@ -25,10 +25,10 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo {
def ivyDeps =
Agg(
- ivy"ch.qos.logback:logback-classic:1.2.10",
+ ivy"ch.qos.logback:logback-classic:1.2.11",
ivy"com.github.pureconfig::pureconfig:0.17.1",
ivy"com.github.scopt::scopt:4.0.1",
- ivy"com.typesafe.akka::akka-stream:2.6.18",
+ ivy"com.typesafe.akka::akka-stream:2.6.19",
ivy"org.bouncycastle:bcprov-jdk15to18:1.70",
ivy"org.log4s::log4s:1.10.0"
)
@@ -52,6 +52,6 @@ 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.10")
+ def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.11")
}
}