forked from simplexspatial/osm4scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
378 lines (338 loc) · 12.7 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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/*
* The MIT License (MIT)
*
* Copyright (c) 2021 Ángel Cervera Claudio
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
import sbt.Keys._
import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations._
import sbtrelease.ReleasePlugin.autoImport._
def isPatch211Enable(): Boolean = sys.env.getOrElse("PATCH_211", "false").toBoolean
// Dependencies
lazy val scalatestVersion = "3.2.0"
lazy val scalacheckVersion = "1.14.3"
lazy val commonIOVersion = "2.5"
lazy val logbackVersion = "1.1.7"
lazy val scoptVersion = "3.7.1"
lazy val akkaVersion = "2.5.31"
lazy val spark3Version = "3.1.1"
lazy val spark2Version = "2.4.7"
lazy val sparkDefaultVersion = spark3Version
lazy val scala213 = "2.13.5"
lazy val scala212 = "2.12.13"
lazy val scala211 = "2.11.12"
lazy val scalaVersions = if (isPatch211Enable()) Seq(scala211) else Seq(scala213, scala212)
lazy val sparkScalaVersions = if (isPatch211Enable()) Seq(scala211) else Seq(scala212)
lazy val commonSettings = Seq(
crossScalaVersions := scalaVersions,
organization := "com.acervera.osm4scala",
organizationHomepage := Some(url("https://www.acervera.com")),
licenses += ("MIT", url("https://opensource.org/licenses/MIT")),
ThisBuild / homepage := Some(
url(s"https://simplexspatial.github.io/osm4scala/")
),
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/simplexspatial/osm4scala"),
"scm:git:git://github.com/simplexspatial/osm4scala.git",
"scm:git:ssh://github.com:simplexspatial/osm4scala.git"
)
),
ThisBuild / developers := List(
Developer(
"angelcervera",
"Angel Cervera Claudio",
url("https://www.acervera.com")
)
),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.scalacheck" %% "scalacheck" % scalacheckVersion % Test,
"commons-io" % "commons-io" % commonIOVersion % Test
),
assembly / test := {},
scalacOptions ++= Seq(
"-target:jvm-1.8",
"-encoding",
"utf8",
"-deprecation",
"-unchecked",
"-Xlint"
),
javacOptions ++= Seq(
"-Xlint:all",
"-source",
"1.8",
"-target",
"1.8",
"-parameters"
),
usePgpKeyHex("A047A2C5A9AFE4850537A00DFC14CE4C2E7B7CBB"),
publishTo := sonatypePublishToBundle.value
)
lazy val disablingPublishingSettings =
Seq(publish / skip := true, publishArtifact := false)
lazy val enablingPublishingSettings = Seq(
publishArtifact := true, // Enable publish
publishMavenStyle := true,
Test / publishArtifact := false
)
lazy val disablingCoverage = Seq(coverageEnabled := false)
lazy val coverageConfig =
Seq(coverageMinimum := 80, coverageFailOnMinimum := true)
lazy val exampleSettings = disablingPublishingSettings ++ disablingCoverage
def generateSparkFatShadedModule(sparkVersion: String, sparkPrj: Project): Project =
Project(
id = s"osm4scala-spark${sparkVersion.head}-shaded",
base = file(s"target/osm4scala-spark${sparkVersion.head}-shaded")
)
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
crossScalaVersions := sparkScalaVersions,
enablingPublishingSettings,
disablingCoverage,
name := s"osm4scala-spark${sparkVersion.head}-shaded",
description := "Spark 2 connector for OpenStreetMap Pbf parser as shaded fat jar.",
Compile / packageBin := (sparkPrj / Compile/ assembly).value
)
def generateSparkModule(sparkVersion: String): Project = {
val baseFolder = if (sparkDefaultVersion == sparkVersion) {
s"spark"
} else {
s"target/spark${sparkVersion.head}"
}
def pathFromModule(relativePath: String): String = if (sparkDefaultVersion == sparkVersion) {
relativePath
} else {
s"../../spark/$relativePath"
}
Project(id = s"spark${sparkVersion.head}", base = file(baseFolder))
.enablePlugins(AssemblyPlugin)
.settings(
commonSettings,
Compile / scalaSource := baseDirectory.value / pathFromModule("src/main/scala"),
Compile / resourceDirectory := baseDirectory.value / pathFromModule("src/main/resources"),
Test / scalaSource := baseDirectory.value / pathFromModule("src/test/scala"),
Test / resourceDirectory := baseDirectory.value / pathFromModule("src/test/resources"),
Test / parallelExecution := false,
crossScalaVersions := sparkScalaVersions,
enablingPublishingSettings,
coverageConfig,
name := s"osm4scala-spark${sparkVersion.head}",
description := "Spark 2 connector for OpenStreetMap Pbf parser.",
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % sparkVersion % Provided
),
assembly / assemblyOption := (assembly / assemblyOption).value.copy(
includeScala = false,
cacheUnzip = false,
cacheOutput = false
),
assembly / assemblyShadeRules := Seq(
ShadeRule
.rename("com.google.protobuf.**" -> "shadeproto.@1")
.inAll
)
)
.dependsOn(core)
}
lazy val spark2 = generateSparkModule(spark2Version)
lazy val spark2FatShaded = generateSparkFatShadedModule(spark2Version, spark2)
lazy val spark3 = generateSparkModule(spark3Version)
lazy val spark3FatShaded = generateSparkFatShadedModule(spark3Version, spark3)
def listOfProjects(): Seq[ProjectReference] = {
val modules: Seq[ProjectReference] = Seq(
core,
spark2,
spark2FatShaded,
commonUtilities,
examplesCounter,
examplesCounterParallel,
examplesCounterAkka,
examplesTagsExtraction,
examplesPrimitivesExtraction,
examplesBlocksExtraction,
examplesTakeN
)
val spark3Projects: Seq[ProjectReference] = Seq(
spark3,
spark3FatShaded,
exampleSparkUtilities,
exampleSparkDocumentation
)
val projects = modules ++ (if(isPatch211Enable()) Seq.empty else spark3Projects)
println(s"PATCH_211 is ${isPatch211Enable()} so we are going to work with this list of projects: \n${projects.mkString("\t- ", "\n\t- ", "")}")
projects
}
lazy val root = (project in file("."))
.disablePlugins(AssemblyPlugin)
.aggregate( listOfProjects(): _*)
.settings(
name := "osm4scala-root",
sonatypeProfileName := "com.acervera.osm4scala",
// crossScalaVersions must be set to Nil on the aggregating project
crossScalaVersions := Nil,
publish / skip := true,
// don't use sbt-release's cross facility
releaseCrossBuild := false,
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
inquireVersions,
runClean,
releaseStepCommandAndRemaining("+test"),
setReleaseVersion,
commitReleaseVersion,
tagRelease,
setNextVersion,
commitNextVersion,
pushChanges
)
)
lazy val core = Project(id = "core", base = file("core"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
enablingPublishingSettings,
coverageConfig,
coverageExcludedPackages := "org.openstreetmap.osmosis.osmbinary.*",
name := "osm4scala-core",
description := "Scala OpenStreetMap Pbf 2 parser. Core",
Compile / PB.targets := Seq(
scalapb.gen(grpc = false) -> (Compile / sourceManaged).value
)
)
// Examples
lazy val commonUtilities = Project(id = "examples-common-utilities", base = file("examples/common-utilities"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
publish / skip := true,
name := "osm4scala-examples-common-utilities",
description := "Utilities shared by all examples",
libraryDependencies ++= Seq("com.github.scopt" %% "scopt" % scoptVersion)
)
.disablePlugins(AssemblyPlugin)
lazy val examplesCounter =
Project(id = "examples-counter", base = file("examples/counter"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-counter",
description := "Counter of primitives (Way, Node, Relation or All) using osm4scala"
)
.dependsOn(core, commonUtilities)
lazy val examplesCounterParallel = Project(id = "examples-counter-parallel", base = file("examples/counter-parallel"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-counter-parallel",
description := "Counter of primitives (Way, Node, Relation or All) using osm4scala in parallel threads"
)
.dependsOn(core, commonUtilities)
lazy val examplesCounterAkka = Project(id = "examples-counter-akka", base = file("examples/counter-akka"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-counter-akka",
description := "Counter of primitives (Way, Node, Relation or All) using osm4scala in parallel with AKKA",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion
)
)
.dependsOn(core, commonUtilities)
lazy val examplesTagsExtraction = Project(id = "examples-tag-extraction", base = file("examples/tagsextraction"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-tags-extraction",
description := "Extract all unique tags from the selected primitive type (Way, Node, Relation or All) using osm4scala"
)
.dependsOn(core, commonUtilities)
lazy val examplesBlocksExtraction = Project(id = "examples-blocks-extraction", base = file("examples/blocksextraction"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-blocks-extraction",
description := "Extract all blocks from the pbf into a folder using osm4scala."
)
.dependsOn(core, commonUtilities)
lazy val examplesBlocksWithIdExtraction = Project(id = "examples-blocks-with-id-extraction", base = file("examples/blockswithidextraction"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "examples-blocks-with-id-extraction",
description := "Extract blocks that contains the id from the pbf into a folder using osm4scala."
)
.dependsOn(core, commonUtilities)
lazy val examplesTakeN = Project(id = "examples-takeN", base = file("examples/takeN"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-takeN",
description := "Generate a pbf file by taking the first N blocks."
)
.dependsOn(core, commonUtilities)
lazy val examplesPrimitivesExtraction =
Project(id = "examples-primitives-extraction", base = file("examples/primitivesextraction"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
name := "osm4scala-examples-primitives-extraction",
description := "Extract all primitives from the pbf into a folder using osm4scala."
)
.dependsOn(core, commonUtilities)
lazy val exampleSparkUtilities = Project(id = "examples-spark-utilities", base = file("examples/spark-utilities"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
crossScalaVersions := Seq(scala212),
name := "osm4scala-examples-spark-utilities",
description := "Example of different utilities using osm4scala and Spark.",
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % spark3Version % Provided
)
)
.dependsOn(spark3, commonUtilities)
lazy val exampleSparkDocumentation = Project(id = "examples-spark-documentation", base = file("examples/spark-documentation"))
.disablePlugins(AssemblyPlugin)
.settings(
commonSettings,
exampleSettings,
crossScalaVersions := Seq(scala212),
name := "osm4scala-examples-spark-documentation",
description := "Examples used in the documentation.",
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % spark3Version
)
)
.dependsOn(spark3, commonUtilities)