-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
695 lines (619 loc) · 24.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
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
import ProjectInfo.{ProjectName, _}
import just.semver.SemVer
import kevinlee.sbt.SbtCommon.crossVersionProps
import sbtcrossproject.CrossProject
ThisBuild / scalaVersion := props.ProjectScalaVersion
ThisBuild / organization := "io.kevinlee"
ThisBuild / organizationName := "Kevin's Code"
ThisBuild / crossScalaVersions := props.CrossScalaVersions
ThisBuild / developers := List(
Developer(
props.GitHubUsername,
"Kevin Lee",
url(s"https://github.com/${props.GitHubUsername}"),
)
)
ThisBuild / homepage := url(s"https://github.com/${props.GitHubUsername}/${props.RepoName}").some
ThisBuild / scmInfo :=
ScmInfo(
browseUrl = url(s"https://github.com/${props.GitHubUsername}/${props.RepoName}"),
connection = s"scm:git:[email protected]:${props.GitHubUsername}/${props.RepoName}.git",
).some
ThisBuild / licenses := props.licenses
ThisBuild / resolvers += "sonatype-snapshots" at s"https://${props.SonatypeCredentialHost}/content/repositories/snapshots"
//ThisBuild / semanticdbEnabled := true
//ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
ThisBuild / scalafixConfig := (
if (scalaVersion.value.startsWith("3"))
((ThisBuild / baseDirectory).value / ".scalafix-scala3.conf").some
else
((ThisBuild / baseDirectory).value / ".scalafix-scala2.conf").some
)
//ThisBuild / scalafixScalaBinaryVersion := {
// val log = sLog.value
// val newVersion = if (scalaVersion.value.startsWith("3")) {
// (ThisBuild / scalafixScalaBinaryVersion).value
// } else {
// CrossVersion.binaryScalaVersion(scalaVersion.value)
// }
//
// log.info(
// s">> Change ThisBuild / scalafixScalaBinaryVersion from ${(ThisBuild / scalafixScalaBinaryVersion).value} to $newVersion"
// )
// newVersion
//}
//ThisBuild / scalafixDependencies += "com.github.xuwei-k" %% "scalafix-rules" % "0.2.12"
lazy val loggerF = (project in file("."))
.enablePlugins(DevOopsGitHubReleasePlugin)
.settings(
name := prefixedProjectName(""),
description := "Logger for F[_]",
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
)
/* GitHub Release { */,
devOopsPackagedArtifacts := List(s"*/*/*/target/scala-*/${devOopsArtifactNamePrefix.value}*.jar"),
/* } GitHub Release */
)
.settings(mavenCentralPublishSettings)
.settings(noPublish)
.aggregate(
coreJvm,
coreJs,
slf4jLoggerJvm,
slf4jLoggerJs,
log4sLoggerJvm,
log4sLoggerJs,
log4jLoggerJvm,
log4jLoggerJs,
sbtLoggingJvm,
sbtLoggingJs,
catsJvm,
catsJs,
logbackMdcMonix3Jvm,
logbackMdcMonix3Js,
testKitJvm,
testKitJs,
catsEffectJvm,
catsEffectJs,
catsEffect3Jvm,
catsEffect3Js,
monixJvm,
monixJs,
)
lazy val core =
module(ProjectName("core"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Core",
libraryDependencies ++= List(
libs.effectieCore,
libs.cats % Test,
libs.tests.extrasConcurrent,
libs.tests.extrasConcurrentTesting,
) ++ libs.tests.hedgehogLibs,
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
lazy val coreJvm = core.jvm
lazy val coreJs = core.js
lazy val slf4jLogger = module(ProjectName("slf4j"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Logger with Slf4j",
libraryDependencies ++= Seq(
libs.slf4jApi
),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.dependsOn(core)
lazy val slf4jLoggerJvm = slf4jLogger.jvm
lazy val slf4jLoggerJs = slf4jLogger.js
lazy val log4sLogger =
module(ProjectName("log4s"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Logger with Log4s",
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
libraryDependencies ++= List(
libs.log4sLib
),
)
.dependsOn(core)
lazy val log4sLoggerJvm = log4sLogger.jvm
lazy val log4sLoggerJs = log4sLogger.js
lazy val log4jLogger =
module(ProjectName("log4j"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Logger with Log4j",
Compile / unmanagedSourceDirectories ++= {
val sharedSourceDir = (baseDirectory.value / ".." / "shared").getCanonicalFile / "src" / "main"
if (scalaVersion.value.startsWith("3."))
Seq(
sharedSourceDir / "scala-2.12_3.0",
sharedSourceDir / "scala-2.13_3.0",
)
else if (scalaVersion.value.startsWith("2.13"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.12_3.0",
sharedSourceDir / "scala-2.13_3.0",
)
else if (scalaVersion.value.startsWith("2.12"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.12_3.0",
sharedSourceDir / "scala-2.12",
)
else
Seq.empty
},
Test / unmanagedSourceDirectories ++= {
val sharedSourceDir = (baseDirectory.value / ".." / "shared").getCanonicalFile / "src" / "test"
if (scalaVersion.value.startsWith("3."))
Seq(
sharedSourceDir / "scala-2.12_3.0",
sharedSourceDir / "scala-2.13_3.0",
)
else if (scalaVersion.value.startsWith("2.13"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.13_3.0",
)
else if (scalaVersion.value.startsWith("2.12"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.12_3.0",
sharedSourceDir / "scala-2.12",
)
else
Seq.empty
},
libraryDependencies ++= Seq(
libs.log4jApi,
libs.log4jCore,
).map(_ % Provided),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.dependsOn(core)
lazy val log4jLoggerJvm = log4jLogger.jvm
lazy val log4jLoggerJs = log4jLogger.js
lazy val sbtLogging =
module(ProjectName("sbt-logging"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Logger with sbt logging",
libraryDependencies ++= crossVersionProps(
List.empty,
SemVer.parseUnsafe(scalaVersion.value),
) {
case (SemVer.Major(2), SemVer.Minor(11), _) =>
List(
libs.sbtLoggingLib % "1.2.4"
)
case (SemVer.Major(2), SemVer.Minor(12), _) =>
List(
libs.sbtLoggingLib % "1.3.3"
)
case (SemVer.Major(2), SemVer.Minor(13), _) | (SemVer.Major(3), SemVer.Minor(_), _) =>
List(
libs.sbtLoggingLib % "1.5.8"
).map(_.cross(CrossVersion.for3Use2_13))
},
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.dependsOn(core)
lazy val sbtLoggingJvm = sbtLogging.jvm
lazy val sbtLoggingJs = sbtLogging.js
lazy val cats =
module(ProjectName("cats"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Cats",
libraryDependencies ++= libs.tests.hedgehogLibs ++ List(
libs.effectieCore,
libs.cats,
libs.effectieSyntax,
libs.effectieCats % Test,
),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.dependsOn(core % props.IncludeTest)
lazy val catsJvm = cats.jvm
lazy val catsJs = cats.js
lazy val logbackMdcMonix3 = module(ProjectName("logback-mdc-monix3"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - logback MDC context map support for Monix 3",
libraryDependencies ++= Seq(
libs.logbackClassic,
libs.logbackScalaInterop,
libs.monix3Execution,
libs.tests.monix,
libs.tests.effectieMonix3,
) ++ libs.tests.hedgehogLibs,
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.dependsOn(
core,
monix % Test,
slf4jLogger % Test,
)
lazy val logbackMdcMonix3Jvm = logbackMdcMonix3.jvm
lazy val logbackMdcMonix3Js = logbackMdcMonix3.js
lazy val testKit =
module(ProjectName("test-kit"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Test Kit",
libraryDependencies ++= libs.tests.hedgehogLibs ++
// libs.tests.hedgehogExtra ++
List(
libs.cats
),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.dependsOn(core % props.IncludeTest)
lazy val testKitJvm = testKit.jvm
lazy val testKitJs = testKit.js
lazy val catsEffect =
module(ProjectName("cats-effect"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Cats Effect",
libraryDependencies ++= libs.tests.hedgehogLibs ++ List(libs.effectieCatsEffect2 % Test),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, cats)
lazy val catsEffectJvm = catsEffect.jvm
lazy val catsEffectJs = catsEffect.js
lazy val catsEffect3 =
module(ProjectName("cats-effect3"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Cats Effect 3",
libraryDependencies ++= libs.tests.hedgehogLibs ++ List(
libs.effectieCatsEffect3 % Test,
libs.tests.extrasHedgehogCatsEffect3,
),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, cats)
lazy val catsEffect3Jvm = catsEffect3.jvm
lazy val catsEffect3Js = catsEffect3.js
lazy val monix =
module(ProjectName("monix"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Logger for F[_] - Monix",
libraryDependencies ++= libs.tests.hedgehogLibs ++ List(libs.effectieMonix % Test),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, cats)
lazy val monixJvm = monix.jvm
lazy val monixJs = monix.js
lazy val testCatsEffectWithSlf4jLogger =
testProject(
ProjectName("cats-effect-slf4j"),
crossProject(JVMPlatform, JSPlatform),
)
.settings(
description := "Test Logger for F[_] - Logger with Slf4j",
libraryDependencies ++= Seq(libs.slf4jApi, libs.logbackClassic, libs.tests.extrasCats),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, slf4jLogger, catsEffect % props.IncludeTest)
lazy val testCatsEffectWithSlf4jLoggerJvm = testCatsEffectWithSlf4jLogger.jvm
lazy val testCatsEffectWithSlf4jLoggerJs = testCatsEffectWithSlf4jLogger.js
lazy val testMonixWithSlf4jLogger =
testProject(
ProjectName("monix-slf4j"),
crossProject(JVMPlatform, JSPlatform),
)
.settings(
description := "Test Logger for F[_] - Logger with Slf4j",
libraryDependencies ++= Seq(libs.slf4jApi, libs.logbackClassic, libs.tests.extrasCats),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, slf4jLogger, monix % props.IncludeTest)
lazy val testMonixWithSlf4jLoggerJvm = testMonixWithSlf4jLogger.jvm
lazy val testMonixWithSlf4jLoggerJs = testMonixWithSlf4jLogger.js
lazy val testCatsEffectWithLog4sLogger =
testProject(
ProjectName("cats-effect-log4s"),
crossProject(JVMPlatform, JSPlatform),
)
.settings(
description := "Test Logger for F[_] - Logger with Log4s",
libraryDependencies ++= Seq(libs.log4sLib, libs.logbackClassic, libs.tests.extrasCats),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, log4sLogger, catsEffect % props.IncludeTest)
lazy val testCatsEffectWithLog4sLoggerJvm = testCatsEffectWithLog4sLogger.jvm
lazy val testCatsEffectWithLog4sLoggerJs = testCatsEffectWithLog4sLogger.js
lazy val testCatsEffectWithLog4jLogger =
testProject(
ProjectName("cats-effect-log4j"),
crossProject(JVMPlatform, JSPlatform),
)
.settings(
description := "Test Logger for F[_] - Logger with Log4j",
libraryDependencies ++= Seq(libs.log4jApi, libs.log4jCore, libs.tests.extrasCats),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
)
.settings(noPublish)
.dependsOn(core % props.IncludeTest, log4jLogger, catsEffect % props.IncludeTest)
lazy val testCatsEffectWithLog4jLoggerJvm = testCatsEffectWithLog4jLogger.jvm
lazy val testCatsEffectWithLog4jLoggerJs = testCatsEffectWithLog4jLogger.js
lazy val docs = (project in file("docs-gen-tmp/docs"))
.enablePlugins(MdocPlugin, DocusaurPlugin)
.settings(
name := "docs",
mdocIn := file("docs/latest"),
mdocOut := file("generated-docs/docs"),
cleanFiles += ((ThisBuild / baseDirectory).value / "generated-docs" / "docs"),
scalacOptions ~= (_.filter(opt => opt != "-Xfatal-warnings")),
libraryDependencies ++= {
val latestTag = getTheLatestTaggedVersion()
Seq(
libs.effectieCore,
libs.effectieSyntax,
libs.effectieCatsEffect2,
"io.kevinlee" %% "logger-f-core" % latestTag,
"io.kevinlee" %% "logger-f-cats" % latestTag,
"io.kevinlee" %% "logger-f-slf4j" % latestTag,
"io.kevinlee" %% "logger-f-log4j" % latestTag,
"io.kevinlee" %% "logger-f-log4s" % latestTag,
"io.kevinlee" %% "logger-f-sbt-logging" % latestTag,
libs.slf4jApi,
libs.logbackClassic,
)
},
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
mdocVariables := createMdocVariables(none),
docusaurDir := (ThisBuild / baseDirectory).value / "website",
docusaurBuildDir := docusaurDir.value / "build",
)
.settings(noPublish)
lazy val docsV1 = (project in file("docs-gen-tmp/docs-v1"))
.enablePlugins(MdocPlugin)
.settings(
name := "docsV1",
mdocIn := file("docs/v1"),
mdocOut := file("website/versioned_docs/version-v1/docs"),
cleanFiles += ((ThisBuild / baseDirectory).value / "website" / "versioned_docs" / "version-v1"),
scalacOptions ~= (_.filter(opt => opt != "-Xfatal-warnings")),
libraryDependencies ++=
Seq(
"io.kevinlee" %% "logger-f-cats-effect" % props.LoggerF1Version,
"io.kevinlee" %% "logger-f-monix" % props.LoggerF1Version,
"io.kevinlee" %% "logger-f-scalaz-effect" % props.LoggerF1Version,
"io.kevinlee" %% "logger-f-slf4j" % props.LoggerF1Version,
"io.kevinlee" %% "logger-f-log4j" % props.LoggerF1Version,
"io.kevinlee" %% "logger-f-log4s" % props.LoggerF1Version,
"io.kevinlee" %% "logger-f-sbt-logging" % props.LoggerF1Version,
libs.slf4jApi,
libs.logbackClassic,
),
libraryDependencies := libraryDependenciesRemoveScala3Incompatible(
scalaVersion.value,
libraryDependencies.value,
),
mdocVariables := createMdocVariables(props.LoggerF1Version.some),
)
.settings(noPublish)
addCommandAlias(
"docsCleanAll",
"; docs/clean; docsV1/clean",
)
addCommandAlias(
"docsMdocAll",
"; docs/mdoc; docsV1/mdoc",
)
def getTheLatestTaggedVersion(): String = {
import sys.process._
"git fetch --tags".!
val tag = "git rev-list --tags --max-count=1".!!.trim
s"git describe --tags $tag".!!.trim.stripPrefix("v")
}
def createMdocVariables(version: Option[String]): Map[String, String] = Map(
"VERSION" -> (version match {
case Some(version) => version
case None => getTheLatestTaggedVersion()
}),
"SUPPORTED_SCALA_VERSIONS" -> {
val versions = props
.CrossScalaVersions
.map(CrossVersion.binaryScalaVersion)
.map(binVer => s"`$binVer`")
if (versions.length > 1)
s"${versions.init.mkString(", ")} and ${versions.last}"
else
versions.mkString
},
)
lazy val props =
new {
final val GitHubUsername = "Kevin-Lee"
final val RepoName = "logger-f"
final val Scala3Versions = List("3.0.2")
final val Scala2Versions = List("2.13.6", "2.12.13")
// final val ProjectScalaVersion = Scala3Versions.head
final val ProjectScalaVersion = Scala2Versions.head
lazy val licenses = List("MIT" -> url("http://opensource.org/licenses/MIT"))
val SonatypeCredentialHost = "s01.oss.sonatype.org"
val SonatypeRepository = s"https://$SonatypeCredentialHost/service/local"
val removeDottyIncompatible: ModuleID => Boolean =
m =>
m.name == "wartremover" ||
m.name == "ammonite" ||
m.name == "kind-projector" ||
m.name == "better-monadic-for" ||
m.name == "mdoc"
final val CrossScalaVersions =
(Scala3Versions ++ Scala2Versions).distinct
final val IncludeTest = "compile->compile;test->test"
final val HedgehogVersion = "0.8.0"
final val HedgehogExtraVersion = "0.3.0"
final val EffectieVersion = "2.0.0-beta14"
final val CatsVersion = "2.7.0"
val CatsEffect3Version = "3.3.14"
val Monix3Version = "3.4.0"
final val LoggerF1Version = "1.20.0"
final val ExtrasVersion = "0.25.0"
final val Slf4JVersion = "2.0.6"
final val LogbackVersion = "1.4.9"
final val Log4sVersion = "1.10.0"
final val Log4JVersion = "2.19.0"
val LogbackScalaInteropVersion = "0.3.0"
}
lazy val libs =
new {
lazy val slf4jApi: ModuleID = "org.slf4j" % "slf4j-api" % props.Slf4JVersion
lazy val logbackClassic: ModuleID = "ch.qos.logback" % "logback-classic" % props.LogbackVersion
lazy val log4sLib: ModuleID = "org.log4s" %% "log4s" % props.Log4sVersion
lazy val log4jApi = "org.apache.logging.log4j" % "log4j-api" % props.Log4JVersion
lazy val log4jCore = "org.apache.logging.log4j" % "log4j-core" % props.Log4JVersion
lazy val sbtLoggingLib = "org.scala-sbt" %% "util-logging"
lazy val cats = "org.typelevel" %% "cats-core" % props.CatsVersion
lazy val catsEffect3 = "org.typelevel" %% "cats-effect" % props.CatsEffect3Version
lazy val monix3Execution = "io.monix" %% "monix-execution" % props.Monix3Version
lazy val effectieCore: ModuleID = "io.kevinlee" %% "effectie-core" % props.EffectieVersion
lazy val effectieSyntax: ModuleID = "io.kevinlee" %% "effectie-syntax" % props.EffectieVersion
lazy val effectieCats: ModuleID = "io.kevinlee" %% "effectie-cats" % props.EffectieVersion
lazy val effectieCatsEffect2: ModuleID = "io.kevinlee" %% "effectie-cats-effect2" % props.EffectieVersion
lazy val effectieCatsEffect3: ModuleID = "io.kevinlee" %% "effectie-cats-effect3" % props.EffectieVersion
lazy val effectieMonix: ModuleID = "io.kevinlee" %% "effectie-monix3" % props.EffectieVersion
lazy val logbackScalaInterop = "io.kevinlee" % "logback-scala-interop" % props.LogbackScalaInteropVersion
lazy val tests = new {
lazy val monix = "io.monix" %% "monix" % props.Monix3Version % Test
lazy val effectieMonix3 = "io.kevinlee" %% "effectie-monix3" % props.EffectieVersion % Test
lazy val hedgehogLibs: List[ModuleID] = List(
"qa.hedgehog" %% "hedgehog-core" % props.HedgehogVersion,
"qa.hedgehog" %% "hedgehog-runner" % props.HedgehogVersion,
"qa.hedgehog" %% "hedgehog-sbt" % props.HedgehogVersion,
).map(_ % Test)
lazy val hedgehogExtra = List(
"io.kevinlee" %% "hedgehog-extra-core" % props.HedgehogExtraVersion
).map(_ % Test)
lazy val extrasCats = "io.kevinlee" %% "extras-cats" % props.ExtrasVersion % Test
lazy val extrasConcurrent = "io.kevinlee" %% "extras-concurrent" % props.ExtrasVersion % Test
lazy val extrasConcurrentTesting = "io.kevinlee" %% "extras-concurrent-testing" % props.ExtrasVersion % Test
lazy val extrasHedgehogCatsEffect3 = "io.kevinlee" %% "extras-hedgehog-ce3" % props.ExtrasVersion % Test
}
}
// scalafmt: off
def prefixedProjectName(name: String) = s"${props.RepoName}${if (name.isEmpty) "" else s"-$name"}"
// scalafmt: on
def libraryDependenciesRemoveScala3Incompatible(
scalaVersion: String,
libraries: Seq[ModuleID],
): Seq[ModuleID] =
(
if (scalaVersion.startsWith("3."))
libraries
.filterNot(props.removeDottyIncompatible)
else
libraries
)
lazy val mavenCentralPublishSettings: SettingsDefinition = List(
/* Publish to Maven Central { */
sonatypeCredentialHost := props.SonatypeCredentialHost,
sonatypeRepository := props.SonatypeRepository,
/* } Publish to Maven Central */
)
def module(projectName: ProjectName, crossProject: CrossProject.Builder): CrossProject = {
val prefixedName = prefixedProjectName(projectName.projectName)
projectCommonSettings(prefixedName, crossProject)
}
def testProject(projectName: ProjectName, crossProject: CrossProject.Builder): CrossProject = {
val prefixedName = s"test-${prefixedProjectName(projectName.projectName)}"
projectCommonSettings(prefixedName, crossProject)
}
def projectCommonSettings(projectName: String, crossProject: CrossProject.Builder): CrossProject =
crossProject
.in(file(s"modules/$projectName"))
.settings(
name := projectName,
licenses := props.licenses,
scalafixConfig := (
if (scalaVersion.value.startsWith("3"))
((ThisBuild / baseDirectory).value / ".scalafix-scala3.conf").some
else
((ThisBuild / baseDirectory).value / ".scalafix-scala2.conf").some
),
/* WartRemover and scalacOptions { */
// , Compile / compile / wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value)
// , Test / compile / wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value)
wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value),
Compile / console / wartremoverErrors := List.empty,
Compile / console / wartremoverWarnings := List.empty,
Compile / console / scalacOptions :=
(console / scalacOptions)
.value
.filterNot(option => option.contains("wartremover") || option.contains("import")),
Test / console / wartremoverErrors := List.empty,
Test / console / wartremoverWarnings := List.empty,
Test / console / scalacOptions :=
(console / scalacOptions)
.value
.filterNot(option => option.contains("wartremover") || option.contains("import")),
/* } WartRemover and scalacOptions */
testFrameworks ++= Seq(TestFramework("hedgehog.sbt.Framework")),
/* Coveralls { */
coverageHighlighting := (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 10)) | Some((2, 11)) =>
false
case _ =>
true
}),
/* } Coveralls */
)
.settings(
mavenCentralPublishSettings
)