-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
45 lines (36 loc) · 1.98 KB
/
build.sbt
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
name := """twitter-clone"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
resolvers += "Atilika Open Source repository" at "http://www.atilika.org/nexus/content/repositories/atilika"
libraryDependencies ++= Seq(
//jdbc,
//cache,
//ws,
//specs2 % Test
// "com.sksamuel.elastic4s" %% "elastic4s" % "1.5.6"
// excludeAll(
// ExclusionRule(organization = "org.scala-lang", name = "scala-library"),
// // ExclusionRule(organization = "org.apache.lucene", name = "lucene-analyzers-common"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-highlighter"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-grouping"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-join"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-memory"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-misc"),
// // ExclusionRule(organization = "org.apache.lucene", name = "lucene-queries"),
// // ExclusionRule(organization = "org.apache.lucene", name = "lucene-queryparser"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-sandbox"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-spatial"),
// ExclusionRule(organization = "org.apache.lucene", name = "lucene-suggest")
// )
"org.atilika.kuromoji" % "kuromoji" % "0.7.7",
"jp.co.bizreach" %% "elastic-scala-httpclient" % "1.0.5",
"jp.t2v" %% "play2-auth" % "0.14.0",
play.sbt.Play.autoImport.cache
)
libraryDependencies += "com.ning" % "async-http-client" % "1.9.29" force()
libraryDependencies += "org.mindrot" % "jbcrypt" % "0.3m"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator