-
Notifications
You must be signed in to change notification settings - Fork 584
/
build.sbt
744 lines (692 loc) · 22.1 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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
Global / onChangedBuildSource := ReloadOnSourceChanges
Global / excludeLintKeys += scalacOptions // might be actually unused in util-doc module but not sure
// All Twitter library releases are date versioned as YY.MM.patch
val releaseVersion = "24.8.0-SNAPSHOT"
val slf4jVersion = "1.7.30"
val jacksonVersion = "2.14.3"
val json4sVersion = "4.0.3"
val mockitoVersion = "3.3.3"
val mockitoScalaVersion = "1.14.8"
val zkVersion = "3.5.6"
val zkClientVersion = "0.0.81"
val zkGroupVersion = "0.0.92"
val zkDependency = "org.apache.zookeeper" % "zookeeper" % zkVersion excludeAll (
ExclusionRule("com.sun.jdmk", "jmxtools"),
ExclusionRule("com.sun.jmx", "jmxri"),
ExclusionRule("javax.jms", "jms")
)
val guavaLib = "com.google.guava" % "guava" % "25.1-jre"
val caffeineLib = "com.github.ben-manes.caffeine" % "caffeine" % "2.9.3"
val jsr305Lib = "com.google.code.findbugs" % "jsr305" % "2.0.1"
val scalacheckLib = "org.scalacheck" %% "scalacheck" % "1.15.4" % "test"
val slf4jApi = "org.slf4j" % "slf4j-api" % slf4jVersion
val snakeyaml = "org.yaml" % "snakeyaml" % "1.28"
def travisTestJavaOptions: Seq[String] = {
// We have some custom configuration for the Travis environment
// https://docs.travis-ci.com/user/environment-variables/#default-environment-variables
val travisBuild = sys.env.getOrElse("TRAVIS", "false").toBoolean
if (travisBuild) {
Seq(
"-DSKIP_FLAKY=true",
"-DSKIP_FLAKY_TRAVIS=true"
)
} else {
Seq(
"-DSKIP_FLAKY=true"
)
}
}
def gcJavaOptions: Seq[String] = {
val javaVersion = System.getProperty("java.version")
if (javaVersion.startsWith("1.8")) {
jdk8GcJavaOptions
} else {
jdk11GcJavaOptions
}
}
def jdk8GcJavaOptions: Seq[String] = {
Seq(
"-XX:+UseParNewGC",
"-XX:+UseConcMarkSweepGC",
"-XX:+CMSParallelRemarkEnabled",
"-XX:+CMSClassUnloadingEnabled",
"-XX:ReservedCodeCacheSize=128m",
"-XX:SurvivorRatio=128",
"-XX:MaxTenuringThreshold=0",
"-Xss8M",
"-Xms512M",
"-Xmx2G"
)
}
def jdk11GcJavaOptions: Seq[String] = {
Seq(
"-XX:+UseConcMarkSweepGC",
"-XX:+CMSParallelRemarkEnabled",
"-XX:+CMSClassUnloadingEnabled",
"-XX:ReservedCodeCacheSize=128m",
"-XX:SurvivorRatio=128",
"-XX:MaxTenuringThreshold=0",
"-Xss8M",
"-Xms512M",
"-Xmx2G"
)
}
val _scalaVersion = "2.13.6"
val _crossScalaVersions = Seq("2.12.12", "2.13.6")
val defaultScalaSettings = Seq(
scalaVersion := _scalaVersion,
crossScalaVersions := _crossScalaVersions
)
val defaultScala3EnabledSettings = Seq(
scalaVersion := _scalaVersion,
crossScalaVersions := _crossScalaVersions ++ Seq("3.0.2")
)
// Our dependencies or compiler options may differ for both Scala 2 and 3. We branch here
// to account for there differences but should merge these artifacts as they are updated.
val scalaDependencies = Seq("org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4")
val scala2cOptions = Seq(
"-target:jvm-1.8",
// Needs -missing-interpolator due to https://issues.scala-lang.org/browse/SI-8761
"-Xlint:-missing-interpolator",
"-Yrangepos"
)
val scala3cOptions = Seq(
"-Xtarget:8"
)
val scala3Dependencies = scalaDependencies ++ Seq(
"org.scalatest" %% "scalatest" % "3.2.9" % "test",
"org.scalatestplus" %% "junit-4-13" % "3.2.9.0" % "test"
)
val scala2Dependencies = scalaDependencies ++ Seq(
"org.scalatest" %% "scalatest" % "3.1.2" % "test",
"org.scalatestplus" %% "junit-4-12" % "3.1.2.0" % "test"
)
val baseSettings = Seq(
version := releaseVersion,
organization := "com.twitter",
// Workaround for a scaladoc bug which causes it to choke on empty classpaths.
Compile / unmanagedClasspath += Attributed.blank(new java.io.File("doesnotexist")),
libraryDependencies ++= Seq(
// See https://www.scala-sbt.org/0.13/docs/Testing.html#JUnit
"com.novocode" % "junit-interface" % "0.11" % "test",
),
Test / fork := true, // We have to fork to get the JavaOptions
// Workaround for cross building HealthyQueue.scala, which is not compatible between
// 2.12-, 2.13+, and scala 3.
Compile / unmanagedSourceDirectories += {
val sourceDir = (Compile / sourceDirectory).value
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, n)) if n < 13 => sourceDir / "scala-2.12-"
case _ => sourceDir / "scala-2.13+"
}
},
// Let's skip compiling docs for Scala 3 due a Dotty Scaladoc bug where generating the docs
// requires network access. See https://github.com/lampepfl/dotty/issues/13272 or CSL-11251.
Compile / doc / sources := {
if (scalaVersion.value.startsWith("3")) Seq.empty
else (Compile / doc / sources).value
},
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-feature",
"-encoding",
"utf8",
) ++ {
if (scalaVersion.value.startsWith("2")) scala2cOptions
else scala3cOptions
},
// Note: Use -Xlint rather than -Xlint:unchecked when TestThriftStructure
// warnings are resolved
javacOptions ++= Seq("-Xlint:unchecked", "-source", "1.8", "-target", "1.8"),
doc / javacOptions := Seq("-source", "1.8"),
javaOptions ++= Seq(
"-Djava.net.preferIPv4Stack=true",
"-XX:+AggressiveOpts",
"-server"
),
javaOptions ++= gcJavaOptions,
Test / javaOptions ++= travisTestJavaOptions,
// -a: print stack traces for failing asserts
testOptions += Tests.Argument(TestFrameworks.JUnit, "-a"),
// This is bad news for things like com.twitter.util.Time
Test / parallelExecution := false,
// Sonatype publishing
Test / publishArtifact := false,
pomIncludeRepository := { _ => false },
publishMavenStyle := true,
publishConfiguration := publishConfiguration.value.withOverwrite(true),
publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true),
autoAPIMappings := true,
apiURL := Some(url("https://twitter.github.io/util/docs/")),
pomExtra :=
<url>https://github.com/twitter/util</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<url>git@github.com:twitter/util.git</url>
<connection>scm:git:git@github.com:twitter/util.git</connection>
</scm>
<developers>
<developer>
<id>twitter</id>
<name>Twitter Inc.</name>
<url>https://www.twitter.com/</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")
}
)
val sharedSettings =
baseSettings ++
defaultScalaSettings ++
Seq(libraryDependencies ++= scala2Dependencies)
val sharedScala3EnabledSettings =
baseSettings ++
defaultScala3EnabledSettings ++
Seq(libraryDependencies ++= scala3Dependencies) ++
Seq(excludeDependencies ++= Seq("org.scala-lang.modules" % "scala-collection-compat_3"))
// settings for projects that are cross compiled with scala 2.10
val settingsCrossCompiledWithTwoTen =
baseSettings ++
Seq(
crossScalaVersions := Seq("2.10.7") ++ _crossScalaVersions,
scalaVersion := _scalaVersion,
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked"),
doc / javacOptions := Seq("-source", "1.8"),
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.14.3" % "test"
)
)
lazy val noPublishSettings = Seq(
publish / skip := true
)
def scalatestMockitoVersionedDep(scalaVersion: String) = {
if (scalaVersion.startsWith("2")) {
Seq(
"org.scalatestplus" %% "mockito-3-3" % "3.1.2.0" % "test"
)
} else {
Seq(
"org.scalatestplus" %% "mockito-3-4" % "3.2.9.0" % "test"
)
}
}
def scalatestScalacheckVersionedDep(scalaVersion: String) = {
if (scalaVersion.startsWith("2")) {
Seq(
"org.scalatestplus" %% "scalacheck-1-14" % "3.1.2.0" % "test"
)
} else {
Seq(
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.9.0" % "test"
)
}
}
lazy val util = Project(
id = "util",
base = file(".")
).enablePlugins(
ScalaUnidocPlugin
).settings(
sharedSettings ++
noPublishSettings ++
Seq(
ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects(utilBenchmark)
)
).aggregate(
utilApp,
utilAppLifecycle,
utilBenchmark,
utilCache,
utilCacheGuava,
utilClassPreloader,
utilCodec,
utilCore,
utilDoc,
utilFunction,
utilHashing,
utilJacksonAnnotations,
utilJackson,
utilJvm,
utilLint,
utilLogging,
utilMock,
utilReflect,
utilRegistry,
utilRouting,
utilSecurity,
utilSecurityTestCerts,
utilSlf4jApi,
utilSlf4jJulBridge,
utilStats,
utilTest,
utilThrift,
utilTunable,
utilValidator,
utilValidatorConstraint,
utilZk,
utilZkTest
)
lazy val utilApp = Project(
id = "util-app",
base = file("util-app")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-app",
libraryDependencies ++= Seq(
"org.mockito" % "mockito-core" % mockitoVersion % "test",
) ++ scalatestMockitoVersionedDep(scalaVersion.value)
).dependsOn(utilAppLifecycle, utilCore, utilRegistry)
lazy val utilAppLifecycle = Project(
id = "util-app-lifecycle",
base = file("util-app-lifecycle")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-app-lifecycle"
).dependsOn(utilCore)
lazy val utilBenchmark = Project(
id = "util-benchmark",
base = file("util-benchmark")
).settings(
sharedSettings
).enablePlugins(
JmhPlugin
).settings(
name := "util-benchmark"
).dependsOn(
utilCore,
utilHashing,
utilJackson,
utilJvm,
utilReflect,
utilStats,
utilValidator
)
lazy val utilCache = Project(
id = "util-cache",
base = file("util-cache")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-cache",
libraryDependencies ++= Seq(
caffeineLib,
jsr305Lib,
"org.mockito" % "mockito-core" % mockitoVersion % "test",
) ++ scalatestMockitoVersionedDep(scalaVersion.value)
).dependsOn(utilCore)
lazy val utilCacheGuava = Project(
id = "util-cache-guava",
base = file("util-cache-guava")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-cache-guava",
libraryDependencies ++= Seq(guavaLib, jsr305Lib)
).dependsOn(utilCache % "compile->compile;test->test", utilCore)
lazy val utilClassPreloader = Project(
id = "util-class-preloader",
base = file("util-class-preloader")
).settings(
sharedSettings
).settings(
name := "util-class-preloader"
).dependsOn(utilCore)
lazy val utilCodec = Project(
id = "util-codec",
base = file("util-codec")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-codec"
).dependsOn(utilCore)
lazy val utilCore = Project(
id = "util-core",
base = file("util-core")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-core",
// Moved some code to 'concurrent-extra' to conform to Pants' 1:1:1 principle (https://www.pantsbuild.org/build_files.html#target-granularity)
// so that util-core would work better for Pants projects in IntelliJ.
Compile / unmanagedSourceDirectories += baseDirectory.value / "concurrent-extra",
libraryDependencies ++= Seq(
caffeineLib % "test",
scalacheckLib,
"org.mockito" % "mockito-core" % mockitoVersion % "test",
) ++
scalatestMockitoVersionedDep(scalaVersion.value) ++
scalatestScalacheckVersionedDep(scalaVersion.value) ++ {
if (scalaVersion.value.startsWith("2")) {
Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2"
)
} else {
Seq(
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.0.0"
)
}
},
Compile / resourceGenerators += Def.task {
val projectName = name.value
val file = resourceManaged.value / "com" / "twitter" / projectName / "build.properties"
val buildRev = scala.sys.process.Process("git" :: "rev-parse" :: "HEAD" :: Nil).!!.trim
val buildName = new java.text.SimpleDateFormat("yyyyMMdd-HHmmss").format(new java.util.Date)
val contents =
s"name=$projectName\nversion=${version.value}\nbuild_revision=$buildRev\nbuild_name=$buildName"
IO.write(file, contents)
Seq(file)
}.taskValue,
Compile / doc / sources := {
// Monitors.java causes "not found: type Monitor$" (CSL-5034)
// so exclude it from the sources used for scaladoc
val previous = (Compile / doc / sources).value
previous.filterNot(file => file.getName() == "Monitors.java")
}
).dependsOn(utilFunction)
lazy val utilDoc = Project(
id = "util-doc",
base = file("doc")
).enablePlugins(
SphinxPlugin
).settings(
sharedSettings ++
noPublishSettings ++ Seq(
doc / scalacOptions ++= Seq("-doc-title", "Util", "-doc-version", version.value),
Sphinx / includeFilter := ("*.html" | "*.png" | "*.svg" | "*.js" | "*.css" | "*.gif" | "*.txt")
))
lazy val utilFunction = Project(
id = "util-function",
base = file("util-function")
).settings(
sharedSettings
).settings(
name := "util-function"
)
lazy val utilReflect = Project(
id = "util-reflect",
base = file("util-reflect")
).settings(
sharedSettings
).settings(
name := "util-reflect"
).dependsOn(utilCore)
lazy val utilHashing = Project(
id = "util-hashing",
base = file("util-hashing")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-hashing",
libraryDependencies ++= Seq(
scalacheckLib
) ++ scalatestScalacheckVersionedDep(scalaVersion.value)
).dependsOn(utilCore % "test")
lazy val utilJacksonAnnotations = Project(
id = "util-jackson-annotations",
base = file("util-jackson-annotations")
).settings(
sharedSettings
).settings(
name := "util-jackson-annotations"
)
lazy val utilJackson = Project(
id = "util-jackson",
base = file("util-jackson")
).settings(
sharedSettings
).settings(
name := "util-jackson",
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % jacksonVersion,
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion exclude ("com.google.guava", "guava"),
"jakarta.validation" % "jakarta.validation-api" % "3.0.0",
"org.json4s" %% "json4s-core" % json4sVersion,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion % "test",
scalacheckLib,
"org.scalatestplus" %% "scalacheck-1-14" % "3.1.2.0" % "test",
"org.slf4j" % "slf4j-simple" % slf4jVersion % "test"
)
).dependsOn(
utilCore,
utilJacksonAnnotations,
utilMock % Test,
utilReflect,
utilSlf4jApi,
utilValidator)
lazy val utilJvm = Project(
id = "util-jvm",
base = file("util-jvm")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-jvm",
libraryDependencies ++= Seq(
"org.mockito" % "mockito-core" % mockitoVersion % "test",
) ++ scalatestMockitoVersionedDep(scalaVersion.value)
).dependsOn(utilApp, utilCore, utilStats)
lazy val utilLint = Project(
id = "util-lint",
base = file("util-lint")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-lint"
).dependsOn(utilCore)
lazy val utilLogging = Project(
id = "util-logging",
base = file("util-logging")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-logging"
).dependsOn(utilCore, utilApp, utilStats)
lazy val utilMock = Project(
id = "util-mock",
base = file("util-mock")
).settings(
sharedSettings
).settings(
name := "util-mock",
libraryDependencies ++= Seq(
// only depend on mockito-scala; it will pull in the correct corresponding version of mockito.
"org.mockito" %% "mockito-scala" % mockitoScalaVersion,
"org.mockito" %% "mockito-scala-scalatest" % mockitoScalaVersion % "test"
)
).dependsOn(utilCore % "test")
lazy val utilRegistry = Project(
id = "util-registry",
base = file("util-registry")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-registry",
libraryDependencies ++= Seq(
"org.mockito" % "mockito-core" % mockitoVersion % "test",
) ++ scalatestMockitoVersionedDep(scalaVersion.value)
).dependsOn(utilCore)
lazy val utilRouting = Project(
id = "util-routing",
base = file("util-routing")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-routing"
).dependsOn(utilCore, utilSlf4jApi)
lazy val utilSlf4jApi = Project(
id = "util-slf4j-api",
base = file("util-slf4j-api")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-slf4j-api",
libraryDependencies ++= Seq(
slf4jApi,
"org.mockito" % "mockito-core" % mockitoVersion % "test",
"org.slf4j" % "slf4j-simple" % slf4jVersion % "test",
) ++ scalatestMockitoVersionedDep(scalaVersion.value)
).dependsOn(utilCore % "test")
lazy val utilSlf4jJulBridge = Project(
id = "util-slf4j-jul-bridge",
base = file("util-slf4j-jul-bridge")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-slf4j-jul-bridge",
libraryDependencies ++= Seq(slf4jApi, "org.slf4j" % "jul-to-slf4j" % slf4jVersion)
).dependsOn(utilCore, utilApp, utilSlf4jApi)
lazy val utilSecurity = Project(
id = "util-security",
base = file("util-security")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-security",
libraryDependencies ++= Seq(
scalacheckLib,
snakeyaml
) ++ scalatestScalacheckVersionedDep(scalaVersion.value)
).dependsOn(utilCore, utilLogging, utilSecurityTestCerts % "test")
lazy val utilSecurityTestCerts = Project(
id = "util-security-test-certs",
base = file("util-security-test-certs")
).settings(
sharedSettings
).settings(
name := "util-security-test-certs"
)
lazy val utilStats = Project(
id = "util-stats",
base = file("util-stats")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-stats",
libraryDependencies ++= Seq(
caffeineLib,
jsr305Lib,
scalacheckLib,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
("com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion exclude ("com.google.guava", "guava"))
.cross(CrossVersion.for3Use2_13),
"org.mockito" % "mockito-core" % mockitoVersion % "test"
) ++ scalatestMockitoVersionedDep(scalaVersion.value)
++ scalatestScalacheckVersionedDep(scalaVersion.value)
++ {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, major)) if major <= 12 =>
Seq()
case _ =>
Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.3" % "test")
}
}
).dependsOn(utilApp, utilCore, utilLint)
lazy val utilTest = Project(
id = "util-test",
base = file("util-test")
).settings(
sharedSettings
).settings(
name := "util-test",
libraryDependencies ++= Seq(
"org.mockito" % "mockito-all" % "1.10.19",
"org.scalatestplus" %% "mockito-1-10" % "3.1.0.0"
)
).dependsOn(utilCore, utilLogging, utilStats)
lazy val utilThrift = Project(
id = "util-thrift",
base = file("util-thrift")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-thrift",
libraryDependencies ++= Seq(
"org.apache.thrift" % "libthrift" % "0.10.0",
slf4jApi % "provided",
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion
)
).dependsOn(utilCodec)
lazy val utilTunable = Project(
id = "util-tunable",
base = file("util-tunable")
).settings(
sharedSettings
).settings(
name := "util-tunable",
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion exclude ("com.google.guava", "guava")
)
).dependsOn(utilApp, utilCore)
lazy val utilValidator = Project(
id = "util-validator",
base = file("util-validator")
).settings(
sharedSettings
).settings(
name := "util-validator",
libraryDependencies ++= Seq(
caffeineLib,
scalacheckLib,
"jakarta.validation" % "jakarta.validation-api" % "3.0.0",
"org.hibernate.validator" % "hibernate-validator" % "7.0.1.Final",
"org.glassfish" % "jakarta.el" % "4.0.0",
"org.json4s" %% "json4s-core" % json4sVersion,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion % "test",
"org.scalatestplus" %% "scalacheck-1-14" % "3.1.2.0" % "test",
"org.slf4j" % "slf4j-simple" % slf4jVersion % "test"
)
).dependsOn(utilCore, utilReflect, utilSlf4jApi, utilValidatorConstraint)
lazy val utilValidatorConstraint = Project(
id = "util-validator-constraints",
base = file("util-validator-constraints")
).settings(
settingsCrossCompiledWithTwoTen
).settings(
libraryDependencies ++= Seq(
"jakarta.validation" % "jakarta.validation-api" % "3.0.0"
)
)
lazy val utilZk = Project(
id = "util-zk",
base = file("util-zk")
).settings(
sharedSettings
).settings(
name := "util-zk",
libraryDependencies ++= Seq(
zkDependency,
"org.mockito" % "mockito-core" % mockitoVersion % "test",
"org.scalatestplus" %% "mockito-3-3" % "3.1.2.0" % "test"
)
).dependsOn(utilCore, utilLogging)
lazy val utilZkTest = Project(
id = "util-zk-test",
base = file("util-zk-test")
).settings(
sharedScala3EnabledSettings
).settings(
name := "util-zk-test",
libraryDependencies += zkDependency
).dependsOn(utilCore % "test")