Skip to content

Commit

Permalink
Update scala-library to 2.13.10 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Dec 21, 2022
1 parent ef4ccfc commit 2bf24a6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ trait Common extends ScalaModule with PublishModule with ScalafixModule {
)
)
def publishVersion = VcsVersion.vcsState().format()
def scalaVersion = "2.13.8"
def scalaVersion = "2.13.10"

def scalacOptions =
super.scalacOptions() ++ Seq("-Ywarn-unused", "-deprecation")
Expand All @@ -57,7 +57,9 @@ class MillMimaCross(val millBinaryVersion: String)
ivy"com.github.lolgab::mima_mill$millBinaryVersion:0.0.1"
)
override def sources = T.sources(
super.sources() ++ Seq(millSourcePath / s"src-mill${millVersion(millBinaryVersion).split('.').take(2).mkString(".")}")
super.sources() ++ Seq(
millSourcePath / s"src-mill${millVersion(millBinaryVersion).split('.').take(2).mkString(".")}"
)
.map(PathRef(_))
)
override def compileIvyDeps = super.compileIvyDeps() ++ Agg(
Expand Down

0 comments on commit 2bf24a6

Please sign in to comment.