This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
51 lines (40 loc) · 1.82 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
46
47
48
49
50
51
name := "activator-http-seed"
organization := "com.example"
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.11", "2.12.1")
fork in run := true
javaOptions ++= Seq(
"-Dlog.service.output=/dev/stderr",
"-Dlog.access.output=/dev/stderr")
resolvers += Resolver.sonatypeRepo("releases")
lazy val versions = new {
val finatra = "2.13.0"
val guice = "4.0"
val logback = "1.1.7"
val mockito = "1.9.5"
val scalatest = "3.0.0"
val scalacheck = "1.13.4"
val specs2 = "2.4.17"
val junit = "4.12"
}
libraryDependencies ++= Seq(
"com.twitter" %% "finatra-http" % versions.finatra,
"ch.qos.logback" % "logback-classic" % versions.logback,
"ch.qos.logback" % "logback-classic" % versions.logback % "test",
"com.twitter" %% "finatra-http" % versions.finatra % "test",
"com.twitter" %% "inject-server" % versions.finatra % "test",
"com.twitter" %% "inject-app" % versions.finatra % "test",
"com.twitter" %% "inject-core" % versions.finatra % "test",
"com.twitter" %% "inject-modules" % versions.finatra % "test",
"com.google.inject.extensions" % "guice-testlib" % versions.guice % "test",
"com.twitter" %% "finatra-http" % versions.finatra % "test" classifier "tests",
"com.twitter" %% "inject-server" % versions.finatra % "test" classifier "tests",
"com.twitter" %% "inject-app" % versions.finatra % "test" classifier "tests",
"com.twitter" %% "inject-core" % versions.finatra % "test" classifier "tests",
"com.twitter" %% "inject-modules" % versions.finatra % "test" classifier "tests",
"junit" % "junit" % versions.junit % "test",
"org.mockito" % "mockito-core" % versions.mockito % "test",
"org.scalacheck" %% "scalacheck" % versions.scalacheck % "test",
"org.scalatest" %% "scalatest" % versions.scalatest % "test",
"org.specs2" %% "specs2-mock" % versions.specs2 % "test")