-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.sbt
105 lines (96 loc) · 3.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import sbtassembly.{AssemblyUtils, MergeStrategy}
val linkerdVersion = "1.7.4"
def twitterUtil(mod: String) =
"com.twitter" %% s"util-$mod" % "20.4.1"
def finagle(mod: String) =
"com.twitter" %% s"finagle-$mod" % "20.4.1"
def telemetry(mod: String) =
"io.buoyant" %% s"telemetry-$mod" % linkerdVersion
def zipkin(mod: String) =
"io.zipkin.finagle2" %% s"zipkin-finagle-$mod" % "2.0.15"
def scalatest() =
"org.scalatest" %% "scalatest" % "3.0.1"
/**
* finagle-thrift includes files copied from libthrift that cause assembly merge conflicts. To
* work around this, we use a merge strategy that uses the files from libthrift in the event of
* a conflict. This should be removed once https://github.com/twitter/finagle/issues/688 is
* resolved.
*/
val libthriftMergeStrategy = new MergeStrategy {
override def name: String = "libthrift-merge-strategy"
override def apply(
tempDir: File,
path: String,
files: Seq[File]
): Either[String, Seq[(File, String)]] = {
Right {
files.find { f =>
AssemblyUtils.sourceOfFileForMerge(tempDir, f)._1.getName == "libthrift-0.10.0.jar"
}.map { f =>
f -> path
}.toSeq
}
}
}
val `linkerd-zipkin` =
project.in(file("."))
.settings(
organization := "io.buoyant",
version := linkerdVersion,
homepage := Some(url("https://linkerd.io")),
scalaVersion in GlobalScope := "2.12.1",
ivyScala := ivyScala.value.map(_.copy(overrideScalaVersion = true)),
resolvers ++= Seq(
"twitter-repo" at "https://maven.twttr.com",
Resolver.mavenLocal,
"typesafe" at "https://repo.typesafe.com/typesafe/releases"
),
libraryDependencies ++= Seq(
finagle("core"),
finagle("zipkin-core"),
telemetry("core"),
twitterUtil("stats"),
zipkin("http"),
zipkin("kafka"),
scalatest() % "test"
),
aggregate in assembly := false,
assemblyMergeStrategy in assembly := {
case "BUILD" => MergeStrategy.discard
case "com/twitter/common/args/apt/cmdline.arg.info.txt.1" => MergeStrategy.discard
case "META-INF/io.netty.versions.properties" => MergeStrategy.last
case path if path.startsWith("org/apache/thrift/protocol") => libthriftMergeStrategy
case path => (assemblyMergeStrategy in assembly).value(path)
},
assemblyJarName in assembly := s"${name.value}-${version.value}.jar",
assemblyOutputPath in assembly := file(s"plugins/${(assemblyJarName in assembly).value}"),
// Sonatype publishinga
publishArtifact in Test := false,
pomIncludeRepository := { _ => false },
publishMavenStyle := true,
pomExtra :=
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<url>[email protected]:linkerd/linkerd-zipkin.git</url>
<connection>scm:git:[email protected]:linkerd/linkerd-zipkin.git</connection>
</scm>
<developers>
<developer>
<id>buoyant</id>
<name>Buoyant Inc.</name>
<url>https://buoyant.io/</url>
</developer>
</developers>,
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (version.value.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
)