Skip to content

Commit

Permalink
chore: add standalone module for kafka
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriiBerezin authored and Grigorii Berezin committed Apr 20, 2024
1 parent f4f726c commit a277c28
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions zio-quickstart-kafka/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
scalaVersion := "2.13.13"

libraryDependencies ++= Seq(
"dev.zio" %% "zio-kafka" % "2.7.4",
"dev.zio" %% "zio-json" % "0.6.2"
)
val `zio-quickstart-kafka` =
project
.in(file("."))
.settings(
scalaVersion := "2.13.13",
stdSettings(),
enableZIO(enableStreaming = true),
libraryDependencies ++= Seq(
"dev.zio" %% "zio-kafka" % "2.7.4",
"dev.zio" %% "zio-json" % "0.6.2"
)
)

0 comments on commit a277c28

Please sign in to comment.