You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Starting from 1.0.0, versions match the version of Kafka they're built against.
26
26
27
27
### How to use
28
28
29
-
* In your `build.sbt` file add the following dependency: `"net.manub" %% "scalatest-embedded-kafka" % "1.1.1" % "test"`
29
+
* In your `build.sbt` file add the following dependency: `"net.manub" %% "scalatest-embedded-kafka" % "2.0.0" % "test"`
30
30
* Have your class extend the `EmbeddedKafka` trait.
31
31
* Enclose the code that needs a running instance of Kafka within the `withRunningKafka` closure.
32
32
@@ -203,7 +203,7 @@ It takes care of instantiating and starting your streams as well as closing them
203
203
204
204
### How to use
205
205
206
-
* In your `build.sbt` file add the following dependency: `"net.manub" %% "scalatest-embedded-kafka-streams" % "1.1.1" % "test"`
206
+
* In your `build.sbt` file add the following dependency: `"net.manub" %% "scalatest-embedded-kafka-streams" % "2.0.0" % "test"`
207
207
* Have a look at the [example test](kafka-streams/src/test/scala/net/manub/embeddedkafka/streams/ExampleKafkaStreamsSpec.scala)
208
208
* For most of the cases have your `Spec` extend the `EmbeddedKafkaStreamsAllInOne` trait. This offers both streams management and easy creation of consumers for asserting resulting messages in output/sink topics.
209
209
* If you only want to use the streams management without the test consumers just have the `Spec` extend the `EmbeddedKafkaStreams` trait.
@@ -250,7 +250,7 @@ If you need to serialize and deserialize messages using Avro, a [Confluent Schem
250
250
### How to use
251
251
252
252
* In your `build.sbt` file add the following resolver: `resolvers += "confluent" at "https://packages.confluent.io/maven/"`
253
-
* In your `build.sbt` file add the following dependency: `"net.manub" %% "scalatest-embedded-schema-registry" % "1.1.1" % "test"`
253
+
* In your `build.sbt` file add the following dependency: `"net.manub" %% "scalatest-embedded-schema-registry" % "2.0.0" % "test"`
254
254
* Have your test extend the `EmbeddedKafkaWithSchemaRegistry` trait.
255
255
* Enclose the code that needs a running instance of Kafka within the `withRunningKafka` closure.
256
256
* Provide an implicit `EmbeddedKafkaConfigWithSchemaRegistryImpl`.
0 commit comments