forked from ANierbeck/BusFloatingData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
266 lines (239 loc) · 11.3 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
* Copyright 2016 Achim Nierbeck
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import de.heikoseeberger.sbtheader.license.Apache2_0
import de.heikoseeberger.sbtheader.{AutomateHeaderPlugin, HeaderPlugin}
import sbt.Keys._
import sbtassembly.MergeStrategy
/**
* root build.sbt
*/
val akkaVer = "2.4.3"
val scalaVer = "2.11.8"
val scalaParsersVer= "1.0.4"
val scalaTestVer = "2.2.6"
val cassandraVer = "3.0.1"
val Log4j2 = "2.5"
val Slf4j = "1.7.18"
val spark = "1.6.0"
val sparkConnector = "1.5.0"
val circeVersion = "0.4.1"
//needed for crosscompilation ...
autoCompilerPlugins := true
fork in run := true
//local dependency for sbt itself
libraryDependencies += "org.apache.spark" %% "spark-core" % spark % "provided"
lazy val compileOptions = Seq(
"-unchecked",
"-deprecation",
"-language:_",
"-target:jvm-1.7",
"-encoding", "UTF-8",
"-Xcheckinit"
)
resolvers += Resolver.bintrayRepo("hseeberger", "maven")
//noinspection ScalaStyle
lazy val commonDependencies = Seq(
"org.scalatest" %% "scalatest" % scalaTestVer % "test",
"joda-time" % "joda-time" % "2.9.3",
"com.twitter" %% "chill-akka" % "0.8.0",
// datastax cassandra driver
"com.datastax.cassandra" % "cassandra-driver-core" % cassandraVer,
"de.ruedigermoeller" % "fst" % "2.45"
).map(_. excludeAll(
ExclusionRule(organization = "org.slf4j", artifact = "slf4j-log4j12"),
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "javax.jms")
))
//noinspection ScalaStyle
lazy val akkaDependencies = Seq(
"org.scala-lang.modules" %% "scala-parser-combinators" % scalaParsersVer,
"com.typesafe.akka" %% "akka-actor" % akkaVer,
"com.typesafe.akka" %% "akka-slf4j" % akkaVer,
"com.typesafe.akka" %% "akka-testkit" % akkaVer % "test",
// these are to avoid sbt warnings about transitive dependency conflicts
"com.typesafe.akka" % "akka-http-experimental_2.11" % "2.0.1",
"com.typesafe.akka" %% "akka-stream-kafka" % "0.11-M2",
"org.apache.kafka" %% "kafka" % "0.9.0.1",
"joda-time" % "joda-time" % "2.9.3",
"de.heikoseeberger" %% "akka-http-json4s" % "1.6.0",
"org.json4s" %% "json4s-jackson" % "3.2.11"
).map(_. excludeAll(
ExclusionRule(organization = "org.slf4j", artifact = "slf4j-log4j12"),
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "log4j"),
ExclusionRule(organization = "javax.jms")
))
//noinspection ScalaStyle
lazy val sparkDependencies = Seq(
"com.datastax.spark" %% "spark-cassandra-connector" % sparkConnector,
"org.apache.spark" %% "spark-streaming-kafka" % spark,
"org.apache.spark" %% "spark-core" % spark % "provided",
"org.apache.spark" %% "spark-streaming" % spark % "provided",
"org.apache.spark" %% "spark-catalyst" % spark % "provided",
"org.apache.spark" %% "spark-sql" % spark % "provided",
"org.apache.spark" %% "spark-mllib" % spark % "provided",
"org.scalanlp" %% "nak" % "1.3"
).map(_.excludeAll(
ExclusionRule(organization = "org.slf4j", artifact = "slf4j-log4j12"),
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "log4j"),
ExclusionRule(organization = "org.spark-project"),
ExclusionRule(organization = "javax.jms")
))
//noinspection ScalaStyle
lazy val logDependencies = Seq(
"org.slf4j" % "slf4j-api" % Slf4j,
"org.apache.logging.log4j" % "log4j-1.2-api" % Log4j2,
"org.apache.logging.log4j" % "log4j-slf4j-impl" % Log4j2,
"org.apache.logging.log4j" % "log4j-api" % Log4j2,
"org.apache.logging.log4j" % "log4j-core" % Log4j2,
"org.slf4j" % "jcl-over-slf4j" % Slf4j,
"org.slf4j" % "jul-to-slf4j" % Slf4j
)
lazy val akkaHttpDependencies = Seq(
"com.typesafe.akka" %% "akka-http-experimental" % akkaVer,
"com.typesafe.akka" %% "akka-http-testkit-experimental" % "2.4.2-RC3"
)
lazy val commonSettings = Seq(
organization := "de.nierbeck.floating.data",
version := "0.1.0-SNAPSHOT",
scalacOptions ++= compileOptions,
parallelExecution in Test := true,
logBuffered in Test := false,
libraryDependencies ++= commonDependencies,
libraryDependencies ++= logDependencies
)
lazy val root = (project in file(".")).
enablePlugins(GitVersioning).
settings(commonSettings: _*).
settings(
name := "BusFloatingData",
scalaVersion := scalaVer
).
aggregate(commons, ingest, akkaDigest, sparkDigest, akkaServer)
lazy val commons = (project in file("commons")).
enablePlugins(AutomateHeaderPlugin).
settings(commonSettings: _*).
settings(
name := "commons",
scalaVersion := scalaVer,
libraryDependencies += "org.apache.kafka" %% "kafka" % "0.9.0.1" % "provided" excludeAll(
ExclusionRule(organization = "org.slf4j", artifact = "slf4j-log4j12"),
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "log4j"),
ExclusionRule(organization = "javax.jms")
),
crossScalaVersions := Seq("2.10.5", scalaVer),
headers := Map(
"scala" -> Apache2_0("2016", "Achim Nierbeck"),
"conf" -> Apache2_0("2016", "Achim Nierbeck", "#")
)
)
lazy val ingest = (project in file("akka-ingest")).
enablePlugins(JavaAppPackaging, AutomateHeaderPlugin).
settings(commonSettings: _*).
settings(
name := "akka-ingest",
scalaVersion := scalaVer,
libraryDependencies ++= akkaDependencies,
crossScalaVersions := Seq(scalaVer),
mainClass in (Compile,run) := Some("de.nierbeck.floating.data.stream.StreamToKafkaApp"),
headers := Map(
"scala" -> Apache2_0("2016", "Achim Nierbeck"),
"conf" -> Apache2_0("2016", "Achim Nierbeck", "#")
)
).dependsOn(commons)
lazy val akkaDigest = (project in file("akka-digest")).
enablePlugins(JavaAppPackaging, AutomateHeaderPlugin).
settings(commonSettings: _*).
settings(
name := "akka-digest",
scalaVersion := scalaVer,
libraryDependencies ++= akkaDependencies,
crossScalaVersions := Seq(scalaVer),
headers := Map(
"scala" -> Apache2_0("2016", "Achim Nierbeck"),
"conf" -> Apache2_0("2016", "Achim Nierbeck", "#")
)
).dependsOn(commons)
lazy val sparkDigest = (project in file("spark-digest")).
enablePlugins(AutomateHeaderPlugin, JavaAppPackaging, UniversalPlugin).
settings(commonSettings: _*).
settings(
name := "spark-digest",
libraryDependencies ++= sparkDependencies,
libraryDependencies += "org.apache.kafka" %% "kafka" % "0.8.2.2" excludeAll(
ExclusionRule(organization = "org.slf4j", artifact = "slf4j-log4j12"),
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "log4j"),
ExclusionRule(organization = "javax.jms")
),
scalaVersion := "2.10.5",
crossScalaVersions := Seq("2.10.5"),
mainClass in (run) := Some("de.nierbeck.floating.data.stream.spark.KafkaToCassandraSparkApp"),
headers := Map(
"scala" -> Apache2_0("2016", "Achim Nierbeck"),
"conf" -> Apache2_0("2016", "Achim Nierbeck", "#")
),
assemblyExcludedJars in assembly <<= (fullClasspath in assembly) map { cp =>
cp.filter(_.data.getName == "slf4j-log4j12-1.6.1.jar")
},
assemblyMergeStrategy in assembly := {
case PathList("META-INF", "MANIFEST.MF") => MergeStrategy.discard
case PathList("", "create_table.cql") => MergeStrategy.discard
case PathList("META-INF", xs @ _*) => MergeStrategy.last
case PathList("org", "apache", "spark", xs @ _ *) => MergeStrategy.first
case PathList("org", "apache", "commons", xs @_ *) => MergeStrategy.last
case PathList("META-INF", "io.netty.versions.properties") => MergeStrategy.last
case x =>
val oldStrategy = (assemblyMergeStrategy in assembly).value
oldStrategy(x)
}
).dependsOn(commons)
lazy val akkaServer = (project in file("akka-server")).
enablePlugins(JavaAppPackaging).
enablePlugins(AutomateHeaderPlugin).
settings(
name := "akka-server",
scalaVersion := scalaVer,
libraryDependencies ++= akkaDependencies,
libraryDependencies ++= akkaHttpDependencies,
libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVer % "test",
libraryDependencies += "com.lambdaworks" %% "jacks" % "2.5.2",
crossScalaVersions := Seq(scalaVer),
headers := Map(
"scala" -> Apache2_0("2016", "Achim Nierbeck"),
"conf" -> Apache2_0("2016", "Achim Nierbeck", "#")
)
).dependsOn(commons)
//create project
addCommandAlias("create", "; so clean ;so test; very publishLocal")
//create deployment artefacts for DC/OS system
addCommandAlias("createIngestContainer", "so ingest/docker:publishLocal")
addCommandAlias("createDigestUberJar", "so sparkDigest/assembly")
addCommandAlias("createServerContainer", "so akkaServer/docker:publishLocal")
//localy run
addCommandAlias("runIngest", "so ingest/run")
addCommandAlias("runServer", "so akkaServer/run")
//localy run spark
addCommandAlias("submitKafkaCassandra", "so sparkDigest/sparkSubmit --master local[2] --class de.nierbeck.floating.data.stream.spark.KafkaToCassandraSparkApp -- METRO-Vehicles localhost 9042 localhost 9092")
addCommandAlias("submitClusterSpark", "so sparkDigest/sparkSubmit --master local[2] --class de.nierbeck.floating.data.stream.spark.CalcClusterSparkApp -- METRO-Vehicles localhost 9042 localhost 9092")