Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dependencies.scala #77

Merged
merged 1 commit into from
Oct 3, 2023
Merged
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
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Dependencies {

object cats {
private val coreVersion: String = "2.10.0"
private val effectVersion: String = "3.5.1"
private val effectVersion: String = "3.5.2"
val core: ModuleID = "org.typelevel" %% "cats-core" % coreVersion
val effectKernel: ModuleID = "org.typelevel" %% "cats-effect-kernel" % effectVersion
val effect: ModuleID = "org.typelevel" %% "cats-effect" % effectVersion
Expand All @@ -22,15 +22,15 @@ object Dependencies {
}

object fs2 {
private val version: String = "3.8.0"
private val kafkaVersion: String = "3.0.1"
private val version: String = "3.9.2"
private val kafkaVersion: String = "3.1.0"
val core: ModuleID = "co.fs2" %% "fs2-core" % version
val kafka: ModuleID = "com.github.fd4s" %% "fs2-kafka" % kafkaVersion
val kafkaVulcan: ModuleID = "com.github.fd4s" %% "fs2-kafka-vulcan" % kafkaVersion
}

object avro {
val avro: ModuleID = "org.apache.avro" % "avro" % "1.11.2"
val avro: ModuleID = "org.apache.avro" % "avro" % "1.11.3"
val vulcan: ModuleID = "com.github.fd4s" %% "vulcan" % "1.9.0"

}
Expand All @@ -53,7 +53,7 @@ object Dependencies {
}

object spark {
private val version: String = "3.4.1"
private val version: String = "3.5.0"
val catalyst: ModuleID = "org.apache.spark" %% "spark-catalyst" % version % "provided"
val core: ModuleID = "org.apache.spark" %% "spark-core" % version % "provided"
val sql: ModuleID = "org.apache.spark" %% "spark-sql" % version % "provided"
Expand Down
Loading