diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-10-08 09:54:51 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-10-08 09:54:51 +0100 |
commit | b7e4076cf52d5a7a0847b84c236ca145ef1b1ff9 (patch) | |
tree | 00bc389c054b14d089b2d04399d8598f100abf31 /build.sc | |
parent | e8d1a32d7baedc3fd1a82c159456f54cd8131c05 (diff) | |
download | spacebeans-b7e4076cf52d5a7a0847b84c236ca145ef1b1ff9.tar.gz spacebeans-b7e4076cf52d5a7a0847b84c236ca145ef1b1ff9.zip |
Update dependencies, mill and bump Scala version
Diffstat (limited to 'build.sc')
-rw-r--r-- | build.sc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ import $ivy.`com.lihaoyi::mill-contrib-buildinfo:$MILL_VERSION` -import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.1.4` +import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.4.0` import de.tobiasroeser.mill.vcs.version.VcsVersion import mill._ import mill.contrib.buildinfo.BuildInfo @@ -7,7 +7,7 @@ import mill.scalalib._ import scalafmt._ object server extends ScalaModule with ScalafmtModule with BuildInfo { - def scalaVersion = "2.13.11" + def scalaVersion = "2.13.12" def scalacOptions = Seq( @@ -24,7 +24,7 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo { def ivyDeps = Agg( - ivy"ch.qos.logback:logback-classic:1.4.9", + ivy"ch.qos.logback:logback-classic:1.4.11", ivy"com.github.pureconfig::pureconfig:0.17.4", ivy"com.github.scopt::scopt:4.1.0", ivy"org.apache.pekko::pekko-stream:1.0.1", @@ -45,12 +45,12 @@ object server extends ScalaModule with ScalafmtModule with BuildInfo { def assembly = T { val version = VcsVersion.vcsState().format() - val spacePath = T.ctx.dest / (name + "-" + version + ".jar") + val spacePath = T.dest / (name + "-" + version + ".jar") os.move(super.assembly().path, spacePath) PathRef(spacePath) } object test extends Tests with TestModule.ScalaTest with ScalafmtModule { - def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.16") + def ivyDeps = Agg(ivy"org.scalatest::scalatest:3.2.17") } } |