-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (21 loc) · 787 Bytes
/
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
name := """play-scalikejdb"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.11"
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test,
"org.postgresql" % "postgresql" % "9.4.1212",
"org.scalikejdbc" %% "scalikejdbc" % "2.5.2",
"org.scalikejdbc" %% "scalikejdbc-config" % "2.5.2",
"org.scalikejdbc" %% "scalikejdbc-syntax-support-macro" % "2.5.2",
"org.scalikejdbc" %% "scalikejdbc-play-initializer" % "2.5.1",
"org.flywaydb" %% "flyway-play" % "3.1.0",
"joda-time" % "joda-time" % "2.9.9",
"org.mindrot" % "jbcrypt" % "0.3m",
"com.chuusai" %% "shapeless" % "2.3.2",
"io.reactivex" %% "rxscala" % "0.26.4"
)
scalikejdbcSettings