File: build.sbt

package info (click to toggle)
libpgjava 42.2.5-2%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,136 kB
  • sloc: java: 57,821; xml: 1,135; sh: 307; perl: 99; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import play.PlayImport.PlayKeys._

name := "pgbug"

organization := "io.flow"

scalaVersion in ThisBuild := "2.11.8"

resolvers := (Resolver.mavenLocal +: resolvers.value)

lazy val root = project
  .in(file("."))
  .enablePlugins(PlayScala)
  .settings(
    libraryDependencies ++= Seq(
      jdbc,
      "com.typesafe.play" %% "anorm" % "2.5.2",
      "org.postgresql" % "postgresql" % "9.4.1210",
      "org.scalatestplus" %% "play" % "1.4.0" % "test"
    )
)