Skip to content

Commit

Permalink
run prePR
Browse files Browse the repository at this point in the history
  • Loading branch information
CJSmith-0141 committed Jul 29, 2023
1 parent 4388f1a commit 3de56dc
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,9 @@ val catsEffectVersion = "3.5.1"
val log4CatsVersion = "2.6.0"

val commonLibraryDependencies = Seq(
// "core" module - IO, IOApp, schedulers
// This pulls in the kernel and std modules automatically.
"org.typelevel" %% "cats-core" % "2.9.0",
"org.typelevel" %% "cats-effect" % catsEffectVersion,
// concurrency abstractions and primitives (Concurrent, Sync, Async etc.)
"org.typelevel" %% "cats-effect-kernel" % catsEffectVersion,
// standard "effect" library (Queues, Console, Random etc.)
"org.typelevel" %% "cats-core" % "2.9.0",
"org.typelevel" %% "cats-effect" % catsEffectVersion,
"org.typelevel" %% "cats-effect-kernel" % catsEffectVersion,
"org.typelevel" %% "cats-effect-std" % catsEffectVersion,
"org.typelevel" %% "log4cats-core" % log4CatsVersion,
"org.typelevel" %% "log4cats-slf4j" % log4CatsVersion,
Expand All @@ -40,8 +36,7 @@ lazy val core = crossProject(JVMPlatform)
.in(file("core"))
.settings(
name := "absurd",
libraryDependencies ++= commonLibraryDependencies,
Compile / doc / scalacOptions ++= Seq("-groups")
libraryDependencies ++= commonLibraryDependencies
)

lazy val tests = crossProject(JVMPlatform)
Expand Down

0 comments on commit 3de56dc

Please sign in to comment.