-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
56 lines (45 loc) · 1.6 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name := "0rora"
organization := "io.github.0rora"
maintainer := "keybase.io/jem"
lazy val root = (project in file(".")).enablePlugins(PlayScala, DockerPlugin, GitVersioning)
scalaVersion := "2.12.8"
libraryDependencies ++= Seq(
guice,
// stellar
"io.github.synesso" %% "scala-stellar-sdk" % "0.7.0",
// sources
"com.nrinaudo" %% "kantan.csv-generic" % "0.5.0",
// database
evolutions, jdbc,
"org.postgresql" % "postgresql" % "42.2.5",
"org.scalikejdbc" %% "scalikejdbc" % "3.3.4",
"org.scalikejdbc" %% "scalikejdbc-config" % "3.3.4",
"org.scalikejdbc" %% "scalikejdbc-play-initializer" % "2.7.0-scalikejdbc-3.3",
// js & css
"org.webjars.npm" % "bulma" % "0.7.5",
"org.webjars" % "font-awesome" % "5.8.2",
// auth
"org.pac4j" %% "play-pac4j" % "8.0.0",
"org.pac4j" % "pac4j-http" % "3.7.0",
"org.pac4j" % "pac4j-sql" % "3.7.0",
"org.apache.shiro" % "shiro-core" % "1.4.1",
// test
specs2 % Test,
"org.specs2" %% "specs2-scalacheck" % "4.5.1" % Test,
"org.scalikejdbc" %% "scalikejdbc-test" % "3.3.4" % Test,
"com.typesafe.akka" %% "akka-testkit" % "2.5.23" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "4.0.2" % Test,
"com.whisk" %% "docker-testkit-specs2" % "0.9.8" % Test,
"com.whisk" %% "docker-testkit-impl-docker-java" % "0.9.8" % Test,
"com.h2database" % "h2" % "1.4.199" % Test,
)
scalacOptions ++= Seq(
"-Yrangepos",
"-unchecked",
"-deprecation",
"-feature",
"-language:postfixOps",
"-encoding",
"UTF-8",
"-target:jvm-1.8")
coverageExcludedPackages := "controllers\\.javascript;router;views.html;controllers\\.Reverse.*"