-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
71 lines (49 loc) · 1.66 KB
/
build.sbt
File metadata and controls
71 lines (49 loc) · 1.66 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name := "anormPostgres"
organization := "com.typedlabs"
version := "0.1.1"
scalaVersion := "2.12.4"
crossScalaVersions := Seq(scalaVersion.value, "2.11.8")
bintrayRepository := "releases"
bintrayOrganization := Some("typedlabs")
bintrayPackageLabels := Seq("scala", "anorm", "postgresql", "sql", "postgres")
bintrayVcsUrl := Some("https://github.com/typedlabs/anorm-postgres")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
publishMavenStyle := false
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-deprecation",
"-unchecked",
"-feature",
"-language:postfixOps",
"-Ywarn-unused",
"-Ywarn-unused-import",
"-Xlint",
"-Ydelambdafy:method",
"-target:jvm-1.8",
"-language:existentials",
"-language:implicitConversions",
"-Xfatal-warnings"
)
libraryDependencies ++= Seq(
//-- Logging
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"com.googlecode.log4jdbc" % "log4jdbc" % "1.2",
//-- CONFIGS
"com.typesafe" % "config" % "1.3.1",
"com.github.kxbmap" %% "configs" % "0.4.4",
//-- PSQL
"org.postgresql" % "postgresql" % "42.1.4",
//-- MIGRATIONS
"org.flywaydb" % "flyway-core" % "4.2.0",
//-- POOLING
"com.zaxxer" % "HikariCP" % "2.6.3",
//-- ANORM
"com.typesafe.play" %% "anorm" % "2.5.3",
//-- JSON
"com.typesafe.play" %% "play-json" % "2.6.3",
//-- PostGis
"net.postgis" % "postgis-jdbc" % "2.2.1",
//-- TEST
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)