-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
30 lines (23 loc) · 893 Bytes
/
build.sbt
File metadata and controls
30 lines (23 loc) · 893 Bytes
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
import AssemblyKeys._
name := "ScalaTesting"
version := "1.0"
scalaVersion := "2.11.8"
mainClass in Global := Some("com.startapp.etl.detectlang.Main")
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"maven" at "http://repo1.maven.org/maven2",
"scala tools" at "http://scala-tools.org/repo-releases",
"Spray Repository" at "http://repo.spray.io"
)
libraryDependencies ++= {
val akkaVersion = "2.4.14"
val sprayVersion = "1.3.2"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"commons-codec" % "commons-codec" % "1.9",
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
//"org.reactivemongo" %% "reactivemongo" % "0.12",
"com.optimaize.languagedetector" % "language-detector" % "0.6"
//langdetect is added as unmanaged jar
)
}