aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt14
1 files changed, 14 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..621f8ff
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,14 @@
1name := """mini-bay"""
2
3version := "1.0-SNAPSHOT"
4
5lazy val root = (project in file(".")).enablePlugins(PlayScala)
6
7scalaVersion := "2.11.1"
8
9libraryDependencies ++= Seq(
10 jdbc,
11 anorm,
12 cache,
13 ws
14)