Skip to content

Commit

Permalink
Add .versions project for checking library updates
Browse files Browse the repository at this point in the history
using sbt-updates
  • Loading branch information
kxbmap committed Nov 19, 2024
1 parent 13156b0 commit da5b04c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,15 @@ lazy val docs = project
"org.scala-lang.modules" %% "scala-xml" % "always"
)
)

lazy val versions = project
.in(file(".versions"))
.settings(
publish / skip := true,
scalaVersion := scala3,
libraryDependencies ++= Seq(scala213, scala212).map("org.scala-lang" % "scala-library" % _),
libraryDependencies ++= jooqVersions.map("org.jooq" % "jooq" % _),
libraryDependencies ++= Seq(
"com.h2database" % "h2" % h2Version
)
)

0 comments on commit da5b04c

Please sign in to comment.