-
Notifications
You must be signed in to change notification settings - Fork 211
/
build.sbt
818 lines (730 loc) · 28.5 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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
val scalaV = ScalaVersions.scala2Version
val scala3Version = ScalaVersions.scala3Version
ThisBuild / scalaVersion := scala3Version
ThisBuild / organization := "com.baeldung"
ThisBuild / organizationName := "core-scala"
val jUnitInterface = "com.github.sbt" % "junit-interface" % "0.13.3" % "test"
val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.4"
val catEffectTest = "org.typelevel" %% "cats-effect-testkit" % "3.5.4" % Test
val scalaReflection = "org.scala-lang" % "scala-reflect" % scalaV
val logback = "ch.qos.logback" % "logback-classic" % "1.5.11"
val embedMongoVersion = "4.17.0"
val AkkaVersion = "2.9.3"
val AlpakkaVersion = "8.0.0"
val AkkaHttpVersion = "10.6.3"
val scalaTestDeps = Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % Test,
"org.scalatest" %% "scalatest-wordspec" % "3.2.19" % Test,
"org.scalatest" %% "scalatest-flatspec" % "3.2.19" % Test
)
val scalaMock = "org.scalamock" %% "scalamock" % "6.0.0" % Test
val zioVersion = "2.1.11"
lazy val scala_core = (project in file("scala-core-modules/scala-core"))
.settings(
name := "scala-core",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(
jUnitInterface
) ++ scalaTestDeps
)
lazy val scala_core_2 = (project in file("scala-core-modules/scala-core-2"))
.settings(
name := "scala-core-2",
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface,
scalaVersion := scala3Version
)
val scalaXmlDep = "org.scala-lang.modules" %% "scala-xml" % "2.3.0"
lazy val scala_core_3 = (project in file("scala-core-modules/scala-core-3"))
.settings(
name := "scala-core-3",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface,
libraryDependencies += scalaXmlDep
)
lazy val scala2_core = (project in file("scala-2-modules/scala2-core"))
.settings(
name := "scala2-core",
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface,
libraryDependencies += scalaReflection,
libraryDependencies += scalaXmlDep,
libraryDependencies += "com.github.scopt" %% "scopt" % "4.1.0",
libraryDependencies += "org.rogach" %% "scallop" % "5.1.0",
libraryDependencies += "org.backuity.clist" %% "clist-core" % "3.5.1",
libraryDependencies += "org.backuity.clist" %% "clist-macros" % "3.5.1" % "provided",
libraryDependencies += "args4j" % "args4j" % "2.37",
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "test",
libraryDependencies += catsEffect
)
lazy val scala_core_4 = (project in file("scala-core-modules/scala-core-4"))
.settings(
name := "scala-core-4",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface,
libraryDependencies += scalaReflection
)
lazy val scala_core_5 = (project in file("scala-core-modules/scala-core-5"))
.settings(
name := "scala-core-5",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface
)
lazy val scala_core_6 = (project in file("scala-core-modules/scala-core-6"))
.settings(
name := "scala-core-6",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface
)
lazy val scala_core_7 = (project in file("scala-core-modules/scala-core-7"))
.settings(
name := "scala-core-7",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface
)
lazy val scala_core_8 = (project in file("scala-core-modules/scala-core-8"))
.settings(
name := "scala-core-8",
libraryDependencies ++= scalaTestDeps,
scalaVersion := scala3Version,
libraryDependencies += "org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2",
libraryDependencies += "com.typesafe" % "config" % "1.2.1"
// scalacOptions += "-Ymacro-debug-lite"
)
lazy val scala_core_9 = (project in file("scala-core-modules/scala-core-9"))
.settings(
name := "scala-core-9",
libraryDependencies ++= scalaTestDeps,
scalaVersion := scala3Version,
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test
)
lazy val scala_core_numbers =
(project in file("scala-core-modules/scala-core-numbers"))
.settings(
name := "scala-core-numbers",
libraryDependencies ++= scalaTestDeps,
scalaVersion := scala3Version,
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test
)
lazy val scala_core_numbers_2 =
(project in file("scala-core-modules/scala-core-numbers-2"))
.settings(
name := "scala-core-numbers",
libraryDependencies ++= scalaTestDeps,
scalaVersion := scala3Version
)
lazy val scala_core_io = (project in file("scala-core-modules/scala-core-io"))
.settings(
name := "scala-core-io",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface
)
lazy val scala_core_oop = (project in file("scala-core-modules/scala-core-oop"))
.settings(
name := "scala-core-oop",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(catsEffect, jUnitInterface) ++ scalaTestDeps
)
lazy val scala_strings_2 =
(project in file("scala-core-modules/scala-strings-2"))
.settings(
name := "scala-core-strings",
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface,
scalaVersion := scala3Version
)
lazy val scala_core_fp = (project in file("scala-core-modules/scala-core-fp"))
.settings(
name := "scala-core-fp",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(catsEffect, jUnitInterface) ++ scalaTestDeps
)
lazy val scala_core_dates =
(project in file("scala-core-modules/scala-core-dates"))
.settings(
name := "scala-core-dates",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += "joda-time" % "joda-time" % "2.13.0",
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "2.34.0",
libraryDependencies += "com.typesafe" % "config" % "1.4.3"
)
lazy val scala_lang = (project in file("scala-lang-modules/scala-lang"))
.settings(
name := "scala-lang",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(jUnitInterface) ++ scalaTestDeps
)
lazy val scala_lang_2 = (project in file("scala-lang-modules/scala-lang-2"))
.settings(
name := "scala-lang-2",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(jUnitInterface) ++ scalaTestDeps
)
val scalaParColDep =
"org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4"
lazy val scala_core_collections =
(project in file("scala-core-collections-modules/scala-core-collections"))
.settings(
name := "scala-core-collections",
scalaVersion := scala3Version,
libraryDependencies ++= Seq(
scalaParColDep
) ++ scalaTestDeps
)
lazy val scala_core_collections_2 =
(project in file("scala-core-collections-modules/scala-core-collections-2"))
.settings(
name := "scala-core-collections-2",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
)
lazy val scala_core_collections_3 =
(project in file("scala-core-collections-modules/scala-core-collections-3"))
.settings(
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
)
lazy val scala_core_collections_4 =
(project in file("scala-core-collections-modules/scala-core-collections-4"))
.settings(
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
)
lazy val scala_core_map =
(project in file("scala-core-collections-modules/scala-core-map"))
.settings(
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
)
lazy val scala_test = (project in file("scala-test"))
.settings(
name := "scala-test",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(
scalaTestPlusMockito,
jUnitInterface
) ++ scalaTestDeps
)
lazy val scala_test_2 = (project in file("scala-test-2"))
.settings(
name := "scala-test-2",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
)
val embeddedMongo =
"de.flapdoodle.embed" % "de.flapdoodle.embed.mongo" % embedMongoVersion
val akkaTypedTestkit =
"com.typesafe.akka" %% "akka-actor-testkit-typed" % AkkaVersion % "it,test"
val akkaStreamDep = "com.typesafe.akka" %% "akka-stream" % AkkaVersion
val akkaHttpDep = "com.typesafe.akka" %% "akka-http" % AkkaHttpVersion
val akkaActorTyped = "com.typesafe.akka" %% "akka-actor-typed" % AkkaVersion
val akkaHttpTestkitDep =
"com.typesafe.akka" %% "akka-http-testkit" % AkkaHttpVersion
lazy val scala_akka_dependencies: Seq[ModuleID] = Seq(
akkaActorTyped,
akkaTypedTestkit,
"com.lightbend.akka" %% "akka-stream-alpakka-mongodb" % AlpakkaVersion,
akkaStreamDep,
"org.mongodb.scala" %% "mongo-scala-driver" % "5.2.0",
"com.lightbend.akka" %% "akka-stream-alpakka-file" % AlpakkaVersion,
jUnitInterface,
embeddedMongo % Test,
akkaHttpDep
) ++ scalaTestDeps
lazy val scala_test_junit4 = (project in file("scala-test-junit4"))
.settings(
name := "scala-test-junit4",
scalaVersion := scala3Version,
libraryDependencies ++=
Seq(
"org.scalatestplus" %% "junit-4-13" % "3.2.19.0" % Test,
jUnitInterface
)
)
lazy val scala_test_junit5 = (project in file("scala-test-junit5"))
.settings(
name := "scala-test-junit5",
scalaVersion := scala3Version
)
lazy val scala_akka = (project in file("scala-akka"))
.configs(IntegrationTest)
.settings(
name := "scala-akka",
libraryDependencies ++= scala_akka_dependencies ++ Seq(
"ch.qos.logback" % "logback-classic" % "1.4.11", // scala-steward:off
embeddedMongo % "it,compile"
) ++ scalaTestDeps.map(_.withConfigurations(Some("it,test"))),
Defaults.itSettings
)
lazy val scala_akka_2 = (project in file("scala-akka-2"))
.enablePlugins(AkkaGrpcPlugin)
.configs(IntegrationTest)
.settings(
name := "scala-akka-2",
Defaults.itSettings,
libraryDependencies ++= Seq(
akkaActorTyped,
akkaStreamDep,
akkaHttpDep,
"com.typesafe.akka" %% "akka-discovery" % AkkaVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % AkkaHttpVersion,
akkaHttpTestkitDep,
"com.lightbend.akka" %% "akka-stream-alpakka-csv" % AlpakkaVersion,
"com.lightbend.akka" %% "akka-stream-alpakka-sse" % AlpakkaVersion,
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
akkaTypedTestkit,
akkaHttpTestkitDep % "it,test",
"com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion % Test
) ++ scalaTestDeps.map(_.withConfigurations(Some("it,test")))
)
lazy val scala_akka_3 = (project in file("scala-akka-3"))
.enablePlugins(AkkaGrpcPlugin)
.configs(IntegrationTest)
.settings(
name := "scala-akka-3",
Defaults.itSettings,
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-discovery" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % AkkaVersion % Test,
akkaActorTyped,
akkaStreamDep,
akkaTypedTestkit
) ++ scalaTestDeps.map(_.withConfigurations(Some("it,test")))
)
val monocleVersion = "2.1.0"
val slickVersion = "3.5.2"
val shapelessVersion = "2.3.12"
val scalazVersion = "7.3.8"
val fs2Version = "3.11.0"
val reactiveMongo = "1.1.0-RC12"
lazy val scala2_libraries =
(project in file("scala-2-modules/scala2-libraries"))
.configs(IntegrationTest)
.settings(
name := "scala2-libraries",
scalaVersion := scalaV,
libraryDependencies ++= scalaTestDeps
.map(_.withConfigurations(Some("it,test"))),
resolvers += "Kafka avro serializer" at "https://packages.confluent.io/maven",
libraryDependencies ++= Seq(
"com.github.julien-truffaut" %% "monocle-core" % monocleVersion,
"com.github.julien-truffaut" %% "monocle-macro" % monocleVersion,
"com.github.julien-truffaut" %% "monocle-law" % monocleVersion % "test",
"com.chuusai" %% "shapeless" % shapelessVersion,
"junit" % "junit" % "4.13.2" % Test,
logback % Test,
akkaActorTyped,
akkaStreamDep,
"com.github.cb372" %% "scalacache-core" % "0.28.0",
"com.github.cb372" %% "scalacache-guava" % "0.28.0",
"com.github.cb372" %% "scalacache-cats-effect" % "0.28.0",
"com.github.cb372" %% "scalacache-caffeine" % "0.28.0",
enumeratumDep,
"io.monix" %% "monix" % monixVersion,
pureConfigDep,
"com.github.pureconfig" %% "pureconfig-enumeratum" % "0.17.7",
"com.typesafe" % "config" % "1.4.3",
"org.scala-lang.modules" %% "scala-async" % "1.0.1",
"com.clever-cloud.pulsar4s" %% "pulsar4s-core" % "2.10.0",
"com.clever-cloud.pulsar4s" %% "pulsar4s-jackson" % "2.10.0",
"org.testcontainers" % "pulsar" % "1.20.3" % IntegrationTest,
"org.apache.kafka" % "kafka-clients" % kafkaVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jackSonVersion,
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % jackSonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jackSonVersion,
"com.sksamuel.avro4s" %% "avro4s-core" % avro4sVersion,
"io.confluent" % "kafka-avro-serializer" % kafkaAvroSerializer,
log4jApiScalaDep,
"org.apache.logging.log4j" % "log4j-core" % log4jVersion % Runtime
),
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % slickVersion,
"com.h2database" % "h2" % "2.3.232"
),
scalacOptions += "-Xasync",
Defaults.itSettings
)
val circeVersion = "0.14.10"
val monixVersion = "3.4.1"
val sparkVersion = "3.5.3"
val elastic4sVersion = "8.15.3"
val sparkCoreDep = "org.apache.spark" %% "spark-core" % sparkVersion
val sparkSqlDep = "org.apache.spark" %% "spark-sql" % sparkVersion
val enumeratumDep = "com.beachape" %% "enumeratum" % "1.7.5"
val circeDep = "io.circe" %% "circe-generic" % circeVersion
val circeParserDep = "io.circe" %% "circe-parser" % circeVersion
lazy val scala_libraries = (project in file("scala-libraries"))
.configs(IntegrationTest)
.settings(
name := "scala-libraries",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
.map(_.withConfigurations(Some("it,test"))),
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
circeDep,
circeParserDep,
"com.softwaremill.retry" %% "retry" % "0.3.6",
log4jApiScalaDep,
"org.apache.logging.log4j" % "log4j-core" % "2.24.1" % Runtime,
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"software.amazon.awssdk" % "s3" % "2.25.9",
"com.github.seratch" %% "awscala" % "0.9.2"
),
libraryDependencies ++= Seq(
"org.playframework" %% "play-slick" % LibraryVersions.playSlickVersion,
"org.postgresql" % "postgresql" % "42.7.4"
),
dependencyOverrides := Seq(
"com.typesafe.akka" %% "akka-protobuf-v3" % AkkaVersion,
akkaStreamDep,
"com.typesafe.akka" %% "akka-serialization-jackson" % AkkaVersion
),
libraryDependencies ++= Seq(
akkaTypedTestkit,
"com.lihaoyi" %% "requests" % "0.9.0"
),
libraryDependencies ++= Seq(
"nl.gn0s1s" %% "elastic4s-client-esjava" % elastic4sVersion,
"nl.gn0s1s" %% "elastic4s-core" % elastic4sVersion,
logback
),
libraryDependencies ++= Seq(
"org.elasticmq" %% "elasticmq-core" % "1.6.8",
"org.elasticmq" %% "elasticmq-server" % "1.6.8",
"org.elasticmq" %% "elasticmq-rest-sqs" % "1.6.8",
"software.amazon.awssdk" % "sqs" % "2.28.28"
),
Defaults.itSettings
)
lazy val scala_libraries_2 = (project in file("scala-libraries-2"))
.configs(IntegrationTest)
.settings(
name := "scala-libraries-2",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
.map(_.withConfigurations(Some("it,test"))),
libraryDependencies += "io.scalaland" %% "chimney" % "1.5.0",
Defaults.itSettings
)
val http4sBlaze = "0.23.16"
val http4sVersion = "0.23.29"
val osLibVersion = "0.11.3"
val osLibDep = "com.lihaoyi" %% "os-lib" % osLibVersion
val log4jApiScalaDep =
"org.apache.logging.log4j" %% "log4j-api-scala" % "13.1.0"
val munitDep = "org.scalameta" %% "munit" % "1.0.2" % Test
lazy val scala_libraries_os = (project in file("scala-libraries-os"))
.settings(
name := "scala-libraries",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies ++= Seq(
log4jApiScalaDep,
"org.apache.logging.log4j" % "log4j-core" % "2.24.1" % Runtime
),
libraryDependencies += osLibDep
)
lazy val redis_intro =
(project in file("scala-libraries-standalone/redis-intro"))
.configs(IntegrationTest)
.settings(
name := "redis-intro",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps
.map(_.withConfigurations(Some("it,test"))),
libraryDependencies ++= Seq(
"redis.clients" % "jedis" % "5.2.0",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.14.1",
"org.scalatestplus" %% "mockito-3-4" % "3.2.10.0" % "it"
),
Defaults.itSettings
)
lazy val tapir = (project in file("scala-libraries-standalone/tapir"))
.settings(
name := "tapir",
scalaVersion := scala3Version
)
lazy val refined = (project in file("scala-libraries-standalone/refined"))
.settings(
name := "refined",
scalaVersion := scalaV,
libraryDependencies += "eu.timepit" %% "refined" % "0.11.2",
libraryDependencies ++= scalaTestDeps
)
lazy val nscalatime = (project in file("scala-libraries-standalone/nscalatime"))
.settings(
name := "nscalatime",
scalaVersion := scala3Version,
libraryDependencies += "com.github.nscala-time" %% "nscala-time" % "2.34.0",
libraryDependencies ++= scalaTestDeps
)
val spireVersion = "0.18.0"
val kafkaVersion = "7.7.1-ce"
val pureconfigVersion = "0.17.7"
val jackSonVersion = "2.18.0"
val log4jApiScalaVersion = "13.1.0"
val log4jVersion = "2.20.0"
val avro4sVersion = "4.1.2"
val kafkaAvroSerializer = "7.7.1"
val pureConfigDep = "com.github.pureconfig" %% "pureconfig" % pureconfigVersion
lazy val scala_libraries_fp = (project in file("scala-libraries-fp"))
.settings(
name := "scala-libraries-fp",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core" % fs2Version,
"co.fs2" %% "fs2-io" % fs2Version,
"org.typelevel" %% "cats-core" % "2.12.0",
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sBlaze,
"org.http4s" %% "http4s-blaze-client" % http4sBlaze,
catEffectTest,
"org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test,
"org.scalaz" %% "scalaz-core" % scalazVersion,
"junit" % "junit" % "4.13.2" % Test,
"org.typelevel" %% "spire" % spireVersion
)
)
lazy val scala_libraries_testing = (project in file("scala-libraries-testing"))
.configs(IntegrationTest)
.settings(
name := "scala-libraries-testing",
scalaVersion := scala3Version,
testFrameworks += new TestFramework("utest.runner.Framework"),
libraryDependencies ++= scalaTestDeps
.map(_.withConfigurations(Some("it,test"))),
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.18.1" % Test,
scalaMock,
"com.lihaoyi" %% "utest" % "0.8.4" % "test",
munitDep,
"com.amazonaws" % "aws-java-sdk-s3" % "1.12.777" % IntegrationTest,
"com.dimafeng" %% "testcontainers-scala-scalatest" % "0.41.3" % IntegrationTest,
"com.dimafeng" %% "testcontainers-scala-localstack-v2" % "0.41.3" % IntegrationTest,
"software.amazon.awssdk" % "s3" % "2.28.28"
),
Defaults.itSettings,
IntegrationTest / fork := true
)
lazy val scala_libraries_persistence =
(project in file("scala-libraries-persistence"))
.configs(IntegrationTest)
.settings(
name := "scala-libraries-persistence",
scalaVersion := scala3Version,
Defaults.itSettings,
libraryDependencies ++= scalaTestDeps
.map(_.withConfigurations(Some("it,test"))),
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % slickVersion,
"com.h2database" % "h2" % "2.3.232",
"org.tpolecat" %% "skunk-core" % "0.6.4",
doobieCore,
doobiePGDep,
"org.reactivemongo" %% "reactivemongo" % reactiveMongo,
"org.reactivemongo" %% "reactivemongo-akkastream" % reactiveMongo,
"de.flapdoodle.embed" % "de.flapdoodle.embed.mongo" % embedMongoVersion % IntegrationTest,
logback
)
)
lazy val scala_libraries_config = (project in file("scala-libraries-config"))
.settings(
name := "scala-libraries-config",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.3",
munitDep,
"com.github.japgolly.clearconfig" %% "core" % "3.1.0",
catsEffect,
"io.circe" %% "circe-yaml" % "0.15.3",
circeDep,
circeParserDep
),
libraryDependencies += "is.cir" %% "ciris" % "3.6.0",
libraryDependencies += "is.cir" %% "ciris-circe" % "3.6.0",
libraryDependencies += "is.cir" %% "ciris-circe-yaml" % "3.6.0"
)
lazy val scala_strings = (project in file("scala-strings"))
.settings(
name := "scala-strings",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += jUnitInterface,
libraryDependencies += scalaParColDep,
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test
)
val scalaTestPlusMockito =
"org.scalatestplus" %% "mockito-5-10" % "3.2.18.0" % Test
lazy val scala_design_patterns = (project in file("scala-design-patterns"))
.settings(
name := "scala-design-patterns",
scalaVersion := scala3Version,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += scalaTestPlusMockito,
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
)
lazy val scala_lang_3 =
(project in file("scala-lang-modules/scala-lang-3")).settings(
libraryDependencies ++= scalaTestDeps,
scalaVersion := scala3Version
)
lazy val scala_lang_4 =
(project in file("scala-lang-modules/scala-lang-4")).settings(
libraryDependencies ++= scalaTestDeps,
scalaVersion := scala3Version
)
lazy val cats_effects = (project in file("cats-effects"))
.settings(
name := "cats-effects",
scalaVersion := scala3Version,
libraryDependencies += catsEffect,
libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
libraryDependencies ++= scalaTestDeps,
libraryDependencies += "junit" % "junit" % "4.13.2" % Test
)
val zioJsonDep = "dev.zio" %% "zio-json" % "0.7.3"
val zioTestSbt = "dev.zio" %% "zio-test-sbt" % zioVersion % Test
lazy val zio = (project in file("zio"))
.settings(
name := "zio",
scalaVersion := scala3Version,
libraryDependencies += "dev.zio" %% "zio" % zioVersion,
libraryDependencies += "dev.zio" %% "zio-streams" % zioVersion,
libraryDependencies += zioTestSbt,
libraryDependencies += "dev.zio" %% "zio-kafka" % "2.8.2",
libraryDependencies += zioJsonDep,
libraryDependencies += "dev.zio" %% "zio-prelude" % "1.0.0-RC23",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test,
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)
lazy val zio2 = (project in file("zio-2"))
.settings(
name := "zio-2",
scalaVersion := scala3Version,
libraryDependencies += "dev.zio" %% "zio" % zioVersion,
libraryDependencies += "dev.zio" %% "zio-json" % "0.7.3",
libraryDependencies += "dev.zio" %% "zio-test" % zioVersion % Test,
libraryDependencies += "dev.zio" %% "zio-test-sbt" % zioVersion % Test,
libraryDependencies += "dev.zio" %% "zio-logging" % "2.1.17",
libraryDependencies += "dev.zio" %% "zio-logging-slf4j2" % "2.1.17",
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.6",
// used in the article, but can't work with zio-logging-slf4j2 dependency
// libraryDependencies += "dev.zio" %% "zio-logging-slf4j2-bridge" % "2.1.10",
libraryDependencies += "dev.zio" %% "zio-metrics-connectors" % "2.3.1",
libraryDependencies += "dev.zio" %% "zio-metrics-connectors-prometheus" % "2.3.1",
libraryDependencies ++= scalaTestDeps,
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)
lazy val zio3 = (project in file("zio3"))
.settings(
libraryDependencies ++= Seq(
zioJsonDep,
"dev.zio" %% "zio-http" % "3.0.1",
"io.getquill" %% "quill-zio" % "4.8.4",
"io.getquill" %% "quill-jdbc-zio" % "4.8.4",
"com.h2database" % "h2" % "2.2.220"
),
libraryDependencies ++= Seq(
"dev.zio" %% "zio-test" % zioVersion % Test,
zioTestSbt,
"dev.zio" %% "zio-test-magnolia" % zioVersion % Test,
"dev.zio" %% "zio-http-testkit" % "3.0.1" % Test
),
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"),
run / fork := true
)
val doobieVersion = "1.0.0-RC2"
val doobiePGDep = "org.tpolecat" %% "doobie-postgres" % doobieVersion
val doobieCore = "org.tpolecat" %% "doobie-core" % doobieVersion
// Scala Native Project is disabled as it needs clang to installed in the target machine.
// To test the scala-native code, install clang and then uncomment this build
// lazy val scala_native = (project in file("scala-native"))
// .settings(
// name := "scala-native",
// scalaVersion := scala3Version,
// libraryDependencies += "com.lihaoyi" %%% "fansi" % "0.4.0"
// )
// ScalaPy Python Project is disabled as it needs clang and python to installed in the target machine.
// To test this code, install clang, python and then uncommment this build
// lazy val scala_python = (project in file("scala-python"))
// .settings(
// name := "scala-python",
// libraryDependencies += "dev.scalapy" %%% "scalapy-core" % "0.5.3",
// fork := true,
// scalaVersion := scala3Version
// )
lazy val reflection = (project in file("reflection"))
.settings(
name := "reflection",
libraryDependencies += scalaReflection,
libraryDependencies += "junit" % "junit" % "4.13.2" % Test
)
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-eG")
lazy val scala212 = (project in file("scala-2-modules/scala212"))
.settings(
scalaVersion := ScalaVersions.scala212Version,
name := "scala212",
libraryDependencies ++= scalaTestDeps
)
lazy val spark_scala = (project in file("spark-scala"))
.settings(
libraryDependencies ++= Seq(
sparkSqlDep,
sparkCoreDep
) ++ scalaTestDeps,
fork := true,
javaOptions ++= Seq(
"--add-exports=java.base/sun.nio.ch=ALL-UNNAMED" // Added for JDK 17 issue with Spark
)
)
// This is here to prevent the accidental addition of the stand-alone module for SCALA-156
// Do not uncomment the next line
// lazy val spark_scala = (project in file("sbt-standalone"))
addCommandAlias(
"ci",
";compile;test:compile;it:compile;scalafmtCheckAll;validateUnitTestNames;test"
)
addCommandAlias(
"integrationTests",
""";set ThisBuild/IntegrationTest/testOptions += Tests.Filter(t => !t.endsWith("ManualTest") && !t.endsWith("LiveTest") ); it:test""".stripMargin
)
addCommandAlias(
"ciFull",
""";clean; ci; set ThisBuild/IntegrationTest/testOptions += Tests.Filter(t => !t.endsWith("ManualTest") && !t.endsWith("LiveTest") ); it:test""".stripMargin
)
addCommandAlias(
"manualTests",
""";ci; set ThisBuild/IntegrationTest/testOptions += Tests.Filter(t => t.endsWith("ManualTest")); it:test""".stripMargin
)
addCommandAlias(
"liveTests",
""";ci; set ThisBuild/IntegrationTest/testOptions += Tests.Filter(t => t.endsWith("LiveTest")); it:test""".stripMargin
)
lazy val playGroup = (project in file("play-scala"))
//Uncomment this to enable scala-js module. It needs nodejs module as well in local machine
//lazy val scalajs = (project in file("scala-js"))
// .settings(
// scalaVersion := scala3Version
// )
lazy val scalatra = project in file("scalatra")
lazy val benchmark = project in file("specialized-benchmark")
ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
ThisBuild / resolvers += "Akka dependencies" at "https://repo.akka.io/maven/"