-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.sbt
409 lines (389 loc) · 12.2 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
import sbt.Keys._
import xerial.sbt.Sonatype._
import de.heikoseeberger.sbtheader._
import Dependencies._
scalaVersion := scalaVer
ThisBuild / scalaVersion := scalaVer
ThisBuild / libraryDependencySchemes += "org.typelevel" %% "cats-parse" % VersionScheme.Always
ThisBuild / versionScheme := Some("early-semver")
val currentYear = java.time.Year.now.getValue.toString
lazy val commonSettings = Seq(
scalaVersion := scalaVer,
crossScalaVersions := crossScalaVer,
scalacOptions := Seq(
"-deprecation",
"-unchecked",
"-feature",
"-language:implicitConversions",
"-language:reflectiveCalls",
"-language:higherKinds",
"-language:postfixOps",
"-language:existentials",
"-language:experimental.macros",
"-feature",
"-Xmacro-settings:materialize-derivations"
// "-Yrangepos", // required by SemanticDB compiler plugin
// "-Ywarn-unused-import", // required by `RemoveUnused` rule
),
scalacOptions ++= (if (priorTo213(scalaVersion.value)) Seq("-Ypartial-unification") else Seq("-Ymacro-annotations")),
resolvers ++= Resolver.sonatypeOssRepos("releases") ++ Resolver.sonatypeOssRepos("snapshots") ++ Seq(
Resolver.bintrayRepo("bkirwi", "maven"), // Required for `decline` dependency
Resolver.bintrayRepo("azavea", "maven"),
Resolver.bintrayRepo("azavea", "geotrellis"),
"osgeo-snapshots".at("https://repo.osgeo.org/repository/snapshot/"),
"osgeo-releases".at("https://repo.osgeo.org/repository/release/"),
"eclipse-releases".at("https://repo.eclipse.org/content/groups/releases"),
"eclipse-snapshots".at("https://repo.eclipse.org/content/groups/snapshots"),
"jitpack".at("https://jitpack.io")
),
libraryDependencies ++= (
if (priorTo213(scalaVersion.value)) Seq(compilerPlugin(macrosParadise cross CrossVersion.full))
else Nil
),
addCompilerPlugin(kindProjector cross CrossVersion.full),
addCompilerPlugin(semanticdbScalac cross CrossVersion.full),
shellPrompt := { s =>
Project.extract(s).currentProject.id + " > "
},
run / fork := true,
outputStrategy := Some(StdoutOutput),
assembly / test := {},
Compile / doc / sources := (Compile / doc / sources).value,
assembly / assemblyMergeStrategy := {
case "reference.conf" => MergeStrategy.concat
case "application.conf" => MergeStrategy.concat
case PathList("META-INF", xs @ _*) =>
xs match {
case ("MANIFEST.MF" :: Nil) =>
MergeStrategy.discard
case ("services" :: _ :: Nil) =>
MergeStrategy.concat
case ("javax.media.jai.registryFile.jai" :: Nil) | ("registryFile.jai" :: Nil) | ("registryFile.jaiext" :: Nil) =>
MergeStrategy.concat
case (name :: Nil)
if name.endsWith(".RSA") || name.endsWith(".DSA") || name
.endsWith(".SF") =>
MergeStrategy.discard
case _ =>
MergeStrategy.first
}
case _ => MergeStrategy.first
},
headerLicense := Some(
HeaderLicense.ALv2(java.time.Year.now.getValue.toString, "Azavea")
),
headerMappings := Map(
FileType.scala -> CommentStyle.cStyleBlockComment.copy(
commentCreator = { (text, existingText) =>
// preserve year of old headers
val newText = CommentStyle.cStyleBlockComment.commentCreator.apply(text, existingText)
existingText.flatMap(_ => existingText.map(_.trim)).getOrElse(newText)
}
)
),
// useCoursier := false,
Global / cancelable := true,
javaOptions ++= Seq("-Djava.library.path=/usr/local/lib")
)
lazy val noPublishSettings = Seq(
publish := {},
publishLocal := {},
publishArtifact := false
)
lazy val publishSettings = Seq(
organization := "com.azavea.geotrellis",
organizationName := "GeoTrellis",
organizationHomepage := Some(new URL("https://geotrellis.io/")),
homepage := Some(url("https://github.com/geotrellis/geotrellis-server")),
description := "GeoTrellis Server is a set of components designed to simplify viewing, processing, and serving raster data from arbitrary sources with an emphasis on doing so in a functional style.",
Test / publishArtifact := false
) ++ sonatypeSettings
lazy val sonatypeSettings = Seq(
sonatypeProfileName := "com.azavea",
sonatypeProjectHosting := Some(
GitHubHosting(
user = "geotrellis",
repository = "maml",
email = "[email protected]"
)
),
developers := List(
Developer(
id = "moradology",
name = "Nathan Zimmerman",
email = "[email protected]",
url = url("https://github.com/moradology")
),
Developer(
id = "echeipesh",
name = "Eugene Cheipesh",
email = "[email protected]",
url = url("https://github.com/echeipesh")
),
Developer(
id = "pomadchin",
name = "Grigory Pomadchin",
email = "[email protected]",
url = url("https://github.com/pomadchin")
)
),
licenses := Seq(
"Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt")
)
)
lazy val root = project
.in(file("."))
.aggregate(core, example, ogc, opengis, `ogc-example`, effects, stac, `stac-example`, azure)
.settings(name := "geotrellis-server")
.settings(commonSettings)
.settings(publishSettings)
.settings(noPublishSettings)
lazy val core = project
.settings(moduleName := "geotrellis-server-core")
.settings(commonSettings)
.settings(publishSettings)
.settings(
assembly / assemblyJarName := "geotrellis-server-core.jar",
libraryDependencies ++= Seq(
circeCore.value,
circeGeneric.value,
circeParser.value,
circeOptics.value,
circeShapes.value,
geotrellisS3,
geotrellisGdal,
geotrellisStore,
cats.value,
catsEffect.value,
mamlJvm,
scalatest,
droste,
log4cats
)
)
lazy val example = project
.settings(commonSettings)
.settings(noPublishSettings)
.dependsOn(core)
.settings(
moduleName := "geotrellis-server-example",
assembly / assemblyJarName := "geotrellis-server-example.jar",
libraryDependencies ++= Seq(
http4sDsl.value,
http4sBlazeServer.value,
http4sBlazeClient.value,
http4sCirce.value,
http4sXml.value,
scalaXml,
logback,
geotrellisS3,
geotrellisStore,
geotrellisGdal,
decline,
commonsIO,
concHashMap,
pureConfig,
pureConfigCatsEffect,
scalatest,
jaxbApi,
log4cats
),
excludeDependencies ++= Seq(
// log4j brought in via uzaygezen is a pain for us
ExclusionRule("log4j", "log4j"),
ExclusionRule("org.slf4j", "slf4j-log4j12"),
ExclusionRule("org.slf4j", "slf4j-nop")
)
)
.settings(
dependencyOverrides += "com.azavea.gdal" % "gdal-warp-bindings" % "33.60a6918"
)
lazy val opengis = project
.enablePlugins(ScalaxbPlugin)
.settings(moduleName := "geotrellis-server-opengis")
.settings(commonSettings)
.settings(publishSettings)
.settings(
libraryDependencies ++= Seq(
scalaXml,
scalaParser,
jaxbApi
)
)
.settings(
Compile / scalaxb / scalaxbDispatchVersion := dispatchVer,
Compile / scalaxb / scalaxbPackageName := "generated",
Compile / scalaxb / scalaxbProtocolPackageName := Some("opengis"),
Compile / scalaxb / scalaxbPackageNames := Map(
uri("http://www.w3.org/1999/xlink") -> "xlink",
uri("http://www.opengis.net/wms") -> "opengis.wms",
uri("http://www.opengis.net/ogc") -> "opengis.ogc",
uri("http://www.opengis.net/wmts/1.0") -> "opengis.wmts",
uri("http://www.opengis.net/ows/1.1") -> "opengis.ows",
uri("http://www.opengis.net/ows") -> "opengis.sld.ows",
uri("http://www.opengis.net/wcs/1.1.1") -> "opengis.wcs",
uri("http://www.opengis.net/gml") -> "opengis.gml",
uri("http://www.opengis.net/filter") -> "opengis.filter",
uri("http://www.opengis.net/se") -> "opengis.se",
uri("http://www.opengis.net/sld") -> "opengis.sld",
uri("http://www.opengis.net/wfs") -> "opengis.wfs",
uri("http://www.w3.org/2001/SMIL20/") -> "opengis.gml.smil",
uri("http://www.w3.org/2001/SMIL20/Language") -> "opengis.gml.smil"
)
)
lazy val ogc = project
.dependsOn(core, opengis)
.settings(moduleName := "geotrellis-server-ogc")
.settings(commonSettings)
.settings(publishSettings)
.settings(
assembly / assemblyJarName := "geotrellis-server-ogc.jar",
libraryDependencies ++= Seq(
geotrellisS3,
geotrellisStore,
commonsIO, // to make GeoTiffRasterSources work
scaffeine,
scalatest,
jaxbApi,
threetenExtra
)
)
lazy val `ogc-example` = project
.dependsOn(ogc)
.enablePlugins(DockerPlugin)
.settings(moduleName := "geotrellis-server-ogc-example")
.settings(commonSettings)
.settings(noPublishSettings)
.settings(
assembly / assemblyJarName := "geotrellis-server-ogc-services.jar",
libraryDependencies ++= Seq(
geotrellisS3,
geotrellisStore,
geotrellisCassandra,
geotrellisHBase,
geotrellisAccumulo,
geotrellisGdal,
http4sDsl.value,
http4sBlazeServer.value,
http4sBlazeClient.value,
http4sCirce.value,
http4sXml.value,
logback,
pureConfig,
pureConfigCatsEffect,
scaffeine,
scalatest,
decline,
ansiColors212
),
excludeDependencies ++= Seq(
// log4j brought in via uzaygezen is a pain for us
ExclusionRule("log4j", "log4j"),
ExclusionRule("org.slf4j", "slf4j-log4j12"),
ExclusionRule("org.slf4j", "slf4j-nop")
)
)
.settings(
docker / dockerfile := {
// The assembly task generates a fat JAR file
val artifact: File = assembly.value
val artifactTargetPath = s"/app/${artifact.name}"
new Dockerfile {
from("openjdk:8-jre")
add(artifact, artifactTargetPath)
entryPoint("java", "-jar", artifactTargetPath)
}
},
docker / imageNames := Seq(
// Sets the latest tag
ImageName(s"geotrellis/geotrellis-server-ogc-services:latest"),
// Sets a name with a tag that contains the project version
ImageName(
namespace = Some("geotrellis"),
repository = "geotrellis-server-ogc-services",
tag = Some("v" + version.value)
)
)
)
lazy val effects = project
.settings(moduleName := "geotrellis-effects")
.settings(commonSettings)
.settings(publishSettings)
.settings(
libraryDependencies ++= Seq(
geotrellisRaster,
geotrellisStore,
cats.value,
catsEffect.value,
log4cats
)
)
lazy val azure = project
.settings(moduleName := "geotrellis-azure")
.settings(commonSettings)
.settings(publishSettings)
.settings(
libraryDependencies ++= Seq(
geotrellisRaster,
azureStorage
)
)
lazy val stac = project
.dependsOn(effects)
.settings(moduleName := "geotrellis-stac")
.settings(commonSettings)
.settings(publishSettings)
.settings(
libraryDependencies ++= Seq(
circeCore.value,
circeGeneric.value,
circeGenericExtras.value,
geotrellisRaster,
stac4sCore,
stac4sClient,
tofuCore
)
)
lazy val `stac-example` = project
.dependsOn(ogc, stac, azure)
.settings(moduleName := "geotrellis-server-stac-example")
.settings(commonSettings)
.settings(publishSettings)
.settings(
libraryDependencies ++= Seq(
geotrellisGdal,
http4sDsl.value,
http4sBlazeServer.value,
http4sBlazeClient.value,
http4sCirce.value,
http4sXml.value,
logback,
pureConfig,
pureConfigCatsEffect,
scaffeine,
scalatest,
decline,
sttpHttp4s,
refinedCats,
refinedPureconfig,
ansiColors212,
tofuCore
),
excludeDependencies ++= Seq(
// log4j brought in via uzaygezen is a pain for us
ExclusionRule("log4j", "log4j"),
ExclusionRule("org.slf4j", "slf4j-log4j12"),
ExclusionRule("org.slf4j", "slf4j-nop")
),
assembly / assemblyJarName := "geotrellis-server-stac-example.jar"
)
lazy val bench = project
.dependsOn(core)
.settings(commonSettings)
.settings(noPublishSettings)
.enablePlugins(JmhPlugin)
def priorTo213(scalaVersion: String): Boolean =
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, minor)) if minor < 13 => true
case _ => false
}