-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
642 lines (582 loc) · 22 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
import ProjectInfo._
import just.semver.{Anh, Dsv, SemVer}
import SemVer.{Major, Minor, Patch}
import just.semver.AdditionalInfo.PreRelease
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 / testFrameworks ~=
(frameworks => (TestFramework("hedgehog.sbt.Framework") +: frameworks).distinct)
ThisBuild / developers := List(
Developer(
props.GitHubUsername,
"Kevin Lee",
"kevin.code@kevinlee.io",
url(s"https://github.com/${props.GitHubUsername}"),
)
)
ThisBuild / homepage := Some(url(s"https://github.com/${props.GitHubUsername}/${props.RepoName}"))
ThisBuild / scmInfo :=
Some(
ScmInfo(
url(s"https://github.com/${props.GitHubUsername}/${props.RepoName}"),
s"git@github.com:${props.GitHubUsername}/${props.RepoName}.git",
)
)
ThisBuild / licenses := props.licenses
ThisBuild / resolvers += props.SonatypeSnapshots
ThisBuild / scalafixConfig := (
if (scalaVersion.value.startsWith("3"))
((ThisBuild / baseDirectory).value / ".scalafix-scala3.conf").some
else
((ThisBuild / baseDirectory).value / ".scalafix-scala2.conf").some
)
lazy val effectie = (project in file("."))
.enablePlugins(DevOopsGitHubReleasePlugin)
.settings(
name := prefixedProjectName(""),
description := "Effect Utils",
libraryDependencies :=
libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
devOopsPackagedArtifacts += s"*/*/*/target/scala-*/${devOopsArtifactNamePrefix.value}*.jar",
)
.settings(noPublish)
.settings(mavenCentralPublishSettings)
.aggregate(
testing4CatsJvm,
testing4CatsJs,
coreJvm,
coreJs,
syntaxJvm,
syntaxJs,
catsJvm,
catsJs,
timeJvm,
timeJs,
timeCatsEffect2Jvm,
timeCatsEffect2Js,
timeCatsEffect3Jvm,
timeCatsEffect3Js,
catsEffect2Jvm,
catsEffect2Js,
catsEffect3Jvm,
catsEffect3Js,
monix3Jvm,
monix3Js,
)
lazy val core = module(ProjectName("core"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Core",
libraryDependencies ++= List(
libs.tests.extrasConcurrent,
libs.tests.extrasConcurrentTesting,
libs.libCatsCore(props.catsVersion) % Test,
) ++ (
if (scalaVersion.value.startsWith("2.12"))
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1")
else
List.empty
),
libraryDependencies :=
libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(testing4Cats % Test)
lazy val coreJvm = core.jvm
lazy val coreJs = core
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val syntax = module(ProjectName("syntax"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Syntax",
libraryDependencies ++= List(
libs.libCatsCore(props.catsVersion),
libs.tests.extrasConcurrent,
libs.tests.extrasConcurrentTesting,
),
libraryDependencies :=
libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(core % props.IncludeTest)
lazy val syntaxJvm = syntax.jvm
lazy val syntaxJs = syntax
.js
.settings(jsSettings)
lazy val cats = module(ProjectName("cats"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Cats",
libraryDependencies ++= List(
libs.libCatsCore(props.catsVersion),
libs.tests.extrasConcurrent,
libs.tests.extrasConcurrentTesting,
),
libraryDependencies :=
libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(
core % props.IncludeTest,
syntax,
testing4Cats % Test,
)
lazy val catsJvm = cats.jvm
lazy val catsJs = cats
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val testing4Cats = module(ProjectName("test4cats"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect's test utils for Cats",
libraryDependencies :=
libraryDependencies.value ++ List(
libs.libCatsCore(props.catsVersion)
) ++ List(libs.hedgehogCore, libs.hedgehogRunner),
libraryDependencies := libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
console / initialCommands :=
"""import effectie.testing.cats._""",
)
lazy val testing4CatsJvm = testing4Cats.jvm
lazy val testing4CatsJs = testing4Cats
.js
.settings(jsSettings)
lazy val time = module(ProjectName("time"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Time",
libraryDependencies ++= List(
libs.libCatsCore(props.catsVersion),
libs.tests.extrasConcurrent,
libs.tests.extrasConcurrentTesting,
) ++ (
if (scalaVersion.value.startsWith("2.12"))
List(libs.libCatsEffect(props.catsEffect2Version) % Test)
else
List(libs.libCatsEffect(props.catsEffect2LatestVersion) % Test)
),
libraryDependencies :=
libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(
core % props.IncludeTest,
syntax,
catsEffect2 % Test,
testing4Cats % Test,
)
lazy val timeJvm = time.jvm
lazy val timeJs = time
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val timeCatsEffect2 = module(ProjectName("time-cats-effect2"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Time with Cats Effect 2",
libraryDependencies :=
(SemVer.parseUnsafe(scalaVersion.value) match {
case SemVer(Major(2), Minor(11), _, _, _) =>
libraryDependencies.value ++ Seq(libs.libCatsCore_2_0_0, libs.libCatsEffect_2_0_0)
case SemVer(
Major(3),
Minor(0),
Patch(0),
Some(PreRelease(List(Dsv(List(Anh.Alphabet("RC"), Anh.Num("1")))))),
_,
) =>
libraryDependencies.value ++ Seq(
libs.libCatsCore(props.catsVersion),
libs.libCatsEffect(props.catsEffect2Version),
)
case x =>
libraryDependencies.value ++ Seq(
libs.libCatsCore(props.catsVersion),
libs.libCatsEffect(props.catsEffect2LatestVersion),
)
}),
libraryDependencies := libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(
core % props.IncludeTest,
syntax % props.IncludeTest,
time,
)
lazy val timeCatsEffect2Jvm = timeCatsEffect2.jvm
lazy val timeCatsEffect2Js = timeCatsEffect2
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val timeCatsEffect3 = module(ProjectName("time-cats-effect3"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Time with Cats Effect 3",
libraryDependencies ++= List(
libs.libCatsCore(props.catsVersion),
libs.libCatsEffect(props.catsEffect3Version),
libs.libCatsEffectTestKit % Test excludeAll ("org.scalacheck"),
libs.tests.extrasHedgehogCatsEffect3,
),
libraryDependencies := libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(
core % props.IncludeTest,
syntax % props.IncludeTest,
time,
)
lazy val timeCatsEffect3Jvm = timeCatsEffect3.jvm
lazy val timeCatsEffect3Js = timeCatsEffect3
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val catsEffect2 = module(ProjectName("cats-effect2"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Cats Effect 2",
libraryDependencies :=
(SemVer.parseUnsafe(scalaVersion.value) match {
case SemVer(Major(2), Minor(11), _, _, _) =>
libraryDependencies.value ++ Seq(libs.libCatsCore_2_0_0, libs.libCatsEffect_2_0_0)
case SemVer(
Major(3),
Minor(0),
Patch(0),
Some(PreRelease(List(Dsv(List(Anh.Alphabet("RC"), Anh.Num("1")))))),
_,
) =>
libraryDependencies.value ++ Seq(
libs.libCatsCore(props.catsVersion),
libs.libCatsEffect(props.catsEffect2Version),
)
case x =>
libraryDependencies.value ++ Seq(
libs.libCatsCore(props.catsVersion),
libs.libCatsEffect(props.catsEffect2LatestVersion),
)
}),
libraryDependencies := libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(
core % props.IncludeTest,
syntax % props.IncludeTest,
cats % props.IncludeTest,
testing4Cats % Test,
)
lazy val catsEffect2Jvm = catsEffect2.jvm
lazy val catsEffect2Js = catsEffect2
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val catsEffect3 = module(ProjectName("cats-effect3"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Cats Effect 3",
libraryDependencies ++= List(
libs.libCatsCore(props.catsVersion),
libs.libCatsEffect(props.catsEffect3Version),
libs.libCatsEffectTestKit % Test excludeAll ("org.scalacheck"),
libs.tests.extrasHedgehogCatsEffect3,
),
libraryDependencies := libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
console / initialCommands :=
"""import effectie.cats._""",
)
.dependsOn(
core % props.IncludeTest,
syntax % props.IncludeTest,
cats % props.IncludeTest,
testing4Cats % Test,
)
lazy val catsEffect3Jvm = catsEffect3.jvm
lazy val catsEffect3Js = catsEffect3
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
lazy val monix3 = module(ProjectName("monix3"), crossProject(JVMPlatform, JSPlatform))
.settings(
description := "Effect Utils - Monix 3",
libraryDependencies :=
crossVersionProps(
List.empty,
SemVer.parseUnsafe(scalaVersion.value),
) {
case (Major(2), Minor(11), _) =>
libraryDependencies.value ++ List(libs.libMonix3_3_0)
case x =>
libraryDependencies.value ++ List(libs.libMonix)
},
libraryDependencies := libraryDependenciesPostProcess(isScala3(scalaVersion.value), libraryDependencies.value),
)
.dependsOn(
core % props.IncludeTest,
syntax % props.IncludeTest,
cats % props.IncludeTest,
catsEffect2 % props.IncludeTest,
testing4Cats % Test,
)
lazy val monix3Jvm = monix3.jvm
lazy val monix3Js = monix3
.js
.settings(jsSettingsForFuture)
.settings(jsSettings)
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 ~= (_.filterNot(props.isScala3IncompatibleScalacOption).filter(opt => opt != "-Xfatal-warnings")),
libraryDependencies ++= {
val latestTag = getTheLatestTaggedVersion()
List(
"io.kevinlee" %% "effectie-cats-effect2" % latestTag,
"io.kevinlee" %% "effectie-monix3" % latestTag,
libs.extrasCats,
libs.extrasConcurrent,
)
},
libraryDependencies := libraryDependenciesPostProcess(
isScala3(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 ~= (_.filterNot(props.isScala3IncompatibleScalacOption).filter(opt => opt != "-Xfatal-warnings")),
libraryDependencies ++= List(
"io.kevinlee" %% "effectie-cats-effect" % "1.16.0",
"io.kevinlee" %% "effectie-monix" % "1.16.0",
"io.kevinlee" %% "effectie-scalaz-effect" % "1.16.0",
),
libraryDependencies := libraryDependenciesPostProcess(
isScala3(scalaVersion.value),
libraryDependencies.value,
),
mdocVariables := createMdocVariables("1.16.0".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 = "effectie"
final val Scala2Versions = List(
"2.13.6",
"2.12.13",
)
final val Scala2Version = Scala2Versions.head
final val Scala3Version = "3.0.2"
// final val ProjectScalaVersion = "2.12.13"
final val ProjectScalaVersion = Scala2Version
// final val ProjectScalaVersion = Scala3Version
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 SonatypeSnapshots = "sonatype-snapshots" at s"https://$SonatypeCredentialHost/content/repositories/snapshots"
val removeDottyIncompatible: ModuleID => Boolean =
m =>
m.name == "wartremover" ||
m.name == "ammonite" ||
m.name == "kind-projector" ||
m.name == "better-monadic-for" ||
m.name == "mdoc"
val isScala3IncompatibleScalacOption: String => Boolean =
_.startsWith("-P:wartremover")
final val CrossScalaVersions =
(Scala3Version :: Scala2Versions).distinct
final val IncludeTest = "compile->compile;test->test"
final val hedgehogLatestVersion = "0.8.0"
final val catsVersion = "2.7.0"
final val catsEffect2Version = "2.4.1"
final val catsEffect2LatestVersion = "2.5.4"
final val catsEffect3Version = "3.3.14"
final val cats2_0_0Version = "2.0.0"
final val catsEffect2_0_0Version = "2.0.0"
final val monixVersion3_3_0 = "3.3.0"
final val monixVersion = "3.4.0"
final val ExtrasVersion = "0.25.0"
}
lazy val libs =
new {
val hedgehogVersion = props.hedgehogLatestVersion
lazy val hedgehogCore = "qa.hedgehog" %% "hedgehog-core" % hedgehogVersion
lazy val hedgehogRunner = "qa.hedgehog" %% "hedgehog-runner" % hedgehogVersion
lazy val hedgehogSbt = "qa.hedgehog" %% "hedgehog-sbt" % hedgehogVersion
lazy val hedgehogLibs: List[ModuleID] =
List(
hedgehogCore,
hedgehogRunner,
hedgehogSbt,
)
def libCatsCore(catsVersion: String): ModuleID = "org.typelevel" %% "cats-core" % catsVersion
def libCatsKernel(catsVersion: String): ModuleID = "org.typelevel" %% "cats-kernel" % catsVersion
def libCatsEffect(catsEffectVersion: String): ModuleID = "org.typelevel" %% "cats-effect" % catsEffectVersion
lazy val libCatsEffectTestKit = "org.typelevel" %% "cats-effect-kernel-testkit" % props.catsEffect3Version
lazy val libCatsCore_2_0_0: ModuleID = "org.typelevel" %% "cats-core" % props.cats2_0_0Version
lazy val libCatsEffect_2_0_0: ModuleID = "org.typelevel" %% "cats-effect" % props.catsEffect2_0_0Version
lazy val libMonix3_3_0: ModuleID = "io.monix" %% "monix" % props.monixVersion3_3_0
lazy val libMonix: ModuleID = "io.monix" %% "monix" % props.monixVersion
lazy val extrasCats = "io.kevinlee" %% "extras-cats" % props.ExtrasVersion
lazy val extrasConcurrent = "io.kevinlee" %% "extras-concurrent" % props.ExtrasVersion
lazy val extrasConcurrentTesting = "io.kevinlee" %% "extras-concurrent-testing" % props.ExtrasVersion
lazy val tests = new {
lazy val extrasHedgehogCatsEffect3 = "io.kevinlee" %% "extras-hedgehog-ce3" % 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 mavenCentralPublishSettings: SettingsDefinition = List(
/* Publish to Maven Central { */
sonatypeCredentialHost := props.SonatypeCredentialHost,
sonatypeRepository := props.SonatypeRepository,
/* } Publish to Maven Central */
)
// scalafmt: off
def prefixedProjectName(name: String) = s"${props.RepoName}${if (name.isEmpty) "" else s"-$name"}"
// scalafmt: on
def isScala3(scalaVersion: String): Boolean = scalaVersion.startsWith("3")
def libraryDependenciesPostProcess(
isDotty: Boolean,
libraries: Seq[ModuleID],
): Seq[ModuleID] =
if (isDotty)
libraries.filterNot(props.removeDottyIncompatible)
else
libraries
def module(projectName: ProjectName, crossProject: CrossProject.Builder): CrossProject = {
val prefixedName = prefixedProjectName(projectName.projectName)
crossProject
.in(file(s"modules/$prefixedName"))
.settings(
name := prefixedName,
fork := true,
scalacOptions := scalacOptions.value.filterNot(props.isScala3IncompatibleScalacOption),
scalafixConfig := (
if (scalaVersion.value.startsWith("3"))
((ThisBuild / baseDirectory).value / ".scalafix-scala3.conf").some
else
((ThisBuild / baseDirectory).value / ".scalafix-scala2.conf").some
),
libraryDependencies ++= libs.hedgehogLibs.map(_ % Test) ++ List(libs.extrasCats % Test),
/* WartRemover and scalacOptions { */
// Compile / compile / wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value),
// Test / compile / wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value),
wartremoverErrors ++= commonWarts((update / scalaBinaryVersion).value),
// , wartremoverErrors ++= Warts.all
// 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 ++= (testFrameworks.value ++ Seq(TestFramework("hedgehog.sbt.Framework"))).distinct,
Compile / unmanagedSourceDirectories ++= {
val sharedSourceDir = (baseDirectory.value / ".." / "shared").getCanonicalFile / "src" / "main"
if (isScala3(scalaVersion.value))
Seq(
sharedSourceDir / "scala-2.12_3",
sharedSourceDir / "scala-2.13_3",
// sharedSourceDir / "scala-3",
)
else if (scalaVersion.value.startsWith("2.13"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.12_3",
sharedSourceDir / "scala-2.13_3",
// sharedSourceDir / "scala-2",
)
else if (scalaVersion.value.startsWith("2.12"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.12_3",
sharedSourceDir / "scala-2.12",
// sharedSourceDir / "scala-2",
)
else
Seq.empty
},
Test / unmanagedSourceDirectories ++= {
val sharedSourceDir = (baseDirectory.value / ".." / "shared").getCanonicalFile / "src" / "test"
if (isScala3(scalaVersion.value) || scalaVersion.value.startsWith("3."))
Seq(
sharedSourceDir / "scala-2.12_3",
sharedSourceDir / "scala-2.13_3",
// sharedSourceDir / "scala-3",
)
else if (scalaVersion.value.startsWith("2.13"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.13_3",
// sharedSourceDir / "scala-2",
)
else if (scalaVersion.value.startsWith("2.12"))
Seq(
sharedSourceDir / "scala-2.12_2.13",
sharedSourceDir / "scala-2.12_3",
sharedSourceDir / "scala-2.12",
// sharedSourceDir / "scala-2",
)
else
Seq.empty
},
licenses := props.licenses,
/* Coveralls { */
coverageHighlighting := (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 10)) | Some((2, 11)) =>
false
case _ =>
true
}),
/* } Coveralls */
)
.settings(mavenCentralPublishSettings)
}
lazy val jsSettingsForFuture: SettingsDefinition = List(
Test / scalacOptions ++= (if (scalaVersion.value.startsWith("3")) List.empty
else List("-P:scalajs:nowarnGlobalExecutionContext")),
Test / compile / scalacOptions ++= (if (scalaVersion.value.startsWith("3")) List.empty
else List("-P:scalajs:nowarnGlobalExecutionContext")),
)
lazy val jsSettings: SettingsDefinition = List(
Test / fork := false
)