-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (25 loc) · 973 Bytes
/
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
val finagleVersion = "18.7.0"
val linkerdVersion = "1.5.0"
lazy val root = (project in file(".")).settings(
inThisBuild(
List(
organization := "com.homeaway",
scalaVersion := "2.12.7",
version := "0.1.0-SNAPSHOT"
)),
name := "svc2svc-stats",
resolvers := Seq(
Resolver.mavenLocal,
Resolver.defaultLocal
),
libraryDependencies ++= Seq(
"com.twitter" %% "finagle-http" % finagleVersion % "provided",
"com.twitter" %% "util-core" % finagleVersion % "provided",
"io.buoyant" %% "linkerd-core" % linkerdVersion % "provided",
"io.buoyant" %% "linkerd-protocol-http" % linkerdVersion % "provided",
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
"org.scalacheck" %% "scalacheck" % "1.13.5" % Test
),
scalacOptions += "-Ypartial-unification",
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false)
)