-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
36 lines (29 loc) · 1.56 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
name := "SecCamVideoProcessor"
version := "0.1.0"
scalaVersion := "2.10.3"
scalacOptions ++= Seq("-deprecation", "-feature","-target:jvm-1.6")
libraryDependencies ++={
val scalaLoggingVersion = "1.1.0"
val logbackVersion = "1.1.1"
val jodaVersion = "2.3"
val junitVersion = "4.11"
val scalaTestVersion = "2.1.0-RC2"
val playVersion = "2.2.1"
val bouncycastleVersion = "1.50"
Seq(
"ch.qos.logback" % "logback-classic" % logbackVersion withSources(),
"joda-time" % "joda-time" % jodaVersion withSources(),
"org.joda" % "joda-convert" % "1.6" withSources(),
"junit" % "junit" % junitVersion withSources(),
"org.scalatest" %% "scalatest" % scalaTestVersion withSources(),
"com.typesafe" %% "scalalogging-slf4j" % scalaLoggingVersion withSources(),
"com.typesafe.play" %% "play-json" % playVersion withSources(),
"net.databinder.dispatch" %% "dispatch-core" % "0.11.0" withSources(),
"org.bouncycastle" % "bcprov-jdk14" % bouncycastleVersion withSources(),
"org.bouncycastle" % "bcpkix-jdk14" % bouncycastleVersion withSources()
)
}
resolvers ++=Seq(
// The Typesafe repository
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
)