-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.sbt
34 lines (20 loc) · 1.41 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
inThisBuild(List(
crossScalaVersions := Seq("2.12.20", "2.13.15", "3.5.1"),
scalaVersion := crossScalaVersions.value.last,
organization := "io.github.nafg.slick-migration-api"
))
name := "slick-migration-api"
libraryDependencies += "com.typesafe.slick" %% "slick" % "3.5.2"
libraryDependencies += "com.typesafe.slick" %% "slick-testkit" % "3.5.2" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"
libraryDependencies += "com.h2database" % "h2" % "2.3.232" % "test"
libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.47.0.0" % "test" // latest version that works
libraryDependencies += "org.apache.derby" % "derby" % "10.15.2.0" % "test"
libraryDependencies += "org.apache.derby" % "derbytools" % "10.15.2.0" % "test"
libraryDependencies += "org.hsqldb" % "hsqldb" % "2.7.4" % "test"
libraryDependencies += "org.postgresql" % "postgresql" % "42.7.4" % "test"
libraryDependencies += "com.mysql" % "mysql-connector-j" % "9.1.0" % "test"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "2.0.16" % "test"
(Compile / doc / scalacOptions) ++= Seq("-groups", "-implicits")
scalacOptions ++= Seq("-feature", "-deprecation", "-Xsource:3")
Test / testOptions += Tests.Argument("-oF")