Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ lazy val scala_lang_2 = (project in file("scala-lang-modules/scala-lang-2"))
Seq(jUnitInterface) ++ scalaTestDeps
)

val scalaParColDep = "org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4"
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"))
Expand Down Expand Up @@ -225,11 +226,13 @@ lazy val scala_test_2 = (project in file("scala-test-2"))
val embeddedMongo =
"de.flapdoodle.embed" % "de.flapdoodle.embed.mongo" % embedMongoVersion

val akkaTypedTestkit = "com.typesafe.akka" %% "akka-actor-testkit-typed" % AkkaVersion % "it,test"
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
val akkaHttpTestkitDep =
"com.typesafe.akka" %% "akka-http-testkit" % AkkaHttpVersion

lazy val scala_akka_dependencies: Seq[ModuleID] = Seq(
akkaActorTyped,
Expand Down Expand Up @@ -384,7 +387,8 @@ val osLibVersion = "0.9.3"

val osLibDep = "com.lihaoyi" %% "os-lib" % osLibVersion

val log4jApiScalaDep = "org.apache.logging.log4j" %% "log4j-api-scala" % "13.1.0"
val log4jApiScalaDep =
"org.apache.logging.log4j" %% "log4j-api-scala" % "13.1.0"

val munitDep = "org.scalameta" %% "munit" % "0.7.29" % Test

Expand Down Expand Up @@ -468,7 +472,7 @@ val jackSonVersion = "2.16.1"
val log4jApiScalaVersion = "13.1.0"
val log4jVersion = "2.20.0"
val avro4sVersion = "4.1.2"
val kafkaAvroSerializer = "7.6.0"
val kafkaAvroSerializer = "7.6.9"

val pureConfigDep = "com.github.pureconfig" %% "pureconfig" % pureconfigVersion

Expand Down Expand Up @@ -514,7 +518,8 @@ lazy val scala_strings = (project in file("scala-strings"))
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test
)

val scalaTestPlusMockito = "org.scalatestplus" %% "mockito-5-10" % "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(
Expand Down