aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: 621f8ff21997e3b4435085bb520304e0425945ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name := """mini-bay"""

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayScala)

scalaVersion := "2.11.1"

libraryDependencies ++= Seq(
  jdbc,
  anorm,
  cache,
  ws
)