-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
40 lines (33 loc) · 1.72 KB
/
build.sbt
File metadata and controls
40 lines (33 loc) · 1.72 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
name := "fac-stemi"
organization := "com.lateralthoughts.internal"
version := "1.0-SNAPSHOT"
scalaVersion := "2.11.1"
val luceneVersion = "4.7.0"
resolvers += Resolver.sonatypeRepo("snapshots")
libraryDependencies ++= Seq(
jdbc,
anorm,
cache,
ws,
"org.webjars" %% "webjars-play" % "2.3.0-2",
"org.webjars" % "angularjs" % "1.2.27",
"org.xhtmlrenderer" % "flying-saucer-pdf" % "9.0.6",
"net.sf.jtidy" % "jtidy" % "r938",
"com.google.apis" % "google-api-services-drive" % "v2-rev109-1.16.0-rc",
"com.google.http-client" % "google-http-client-jackson2" % "1.17.0-rc",
"com.google.http-client" % "google-http-client-jackson" % "1.15.0-rc",
"org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23",
"org.apache.lucene" % "lucene-test-framework" % luceneVersion % "test",
"org.apache.lucene" % "lucene-core" % luceneVersion,
"org.apache.lucene" % "lucene-analyzers-common" % luceneVersion,
"org.apache.lucene" % "lucene-queries" % luceneVersion,
"org.apache.lucene" % "lucene-queryparser" % luceneVersion,
"org.apache.lucene" % "lucene-highlighter" % luceneVersion,
"com.softwaremill.macwire" %% "macros" % "0.7.1",
"com.softwaremill.macwire" %% "runtime" % "0.7.1",
"ws.securesocial" %% "securesocial" % "master-SNAPSHOT",
"org.julienrf" %% "play-json-variants" % "1.0.0",
"com.jsuereth" %% "scala-arm" % "1.4",
"org.scalatestplus" %% "play" % "1.1.0" % "test"
)
lazy val root = (project in file(".")).enablePlugins(SbtWeb).enablePlugins(PlayScala)