forked from pombredanne/BuildBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
45 lines (34 loc) · 1.15 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
45
name := "BuildBoard"
version := "1.0"
scalaVersion := "2.10.2"
resolvers ++= Seq(
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases",
"java maven" at "https://maven.java.net/content/repositories/releases"
)
libraryDependencies ++= Seq(
anorm,
"se.radley" %% "play-plugins-salat" % "1.3.0",
"org.eclipse.mylyn.github" % "org.eclipse.egit.github.core" % "2.1.5",
"org.scalaj" %% "scalaj-http" % "0.3.9" exclude("junit", "junit"),
"com.netflix.rxjava" % "rxjava-scala" % "0.17.6",
"com.github.nscala-time" %% "nscala-time" % "0.8.0",
"org.specs2" %% "specs2" % "2.3.3",
"org.mockito" % "mockito-all" % "1.9.5",
"joda-time" % "joda-time" % "2.3",
"net.java.dev.jna" % "jna" % "4.1.0",
"net.java.dev.jna" % "jna-platform" % "4.1.0"
)
libraryDependencies += filters
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-deprecation",
"-unchecked",
"-feature",
"-language:postfixOps",
"-language:implicitConversions"
)
routesImport += "se.radley.plugin.salat.Binders._"
templatesImport += "org.bson.types.ObjectId"
play.Project.playScalaSettings