forked from akshaal/slick-migration-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (15 loc) · 1.16 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
crossScalaVersions := Seq("2.11.7", "2.10.5")
organization := "io.github.nafg"
name := "slick-migration-api"
libraryDependencies += "com.typesafe.slick" %% "slick" % "3.1.1"
libraryDependencies += "com.typesafe.slick" %% "slick-testkit" % "3.1.1" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.0" % "test"
libraryDependencies += "com.h2database" % "h2" % "1.3.170" % "test"
libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.8.11.2" % "test"
libraryDependencies += "org.apache.derby" % "derby" % "10.10.1.1" % "test"
libraryDependencies += "org.hsqldb" % "hsqldb" % "2.2.8" % "test"
libraryDependencies += "postgresql" % "postgresql" % "9.1-901.jdbc4" % "test"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.31" % "test"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.6.4" % "test"
scalacOptions in (Compile, doc) ++= Seq("-groups", "-implicits")
testOptions in Test += Tests.Argument("-oF")