Skip to content

Commit d9b2ec4

Browse files
authored
Updated for release 2.0.0
1 parent 93393ec commit d9b2ec4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Starting from 1.0.0, versions match the version of Kafka they're built against.
2626

2727
### How to use
2828

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"`
3030
* Have your class extend the `EmbeddedKafka` trait.
3131
* Enclose the code that needs a running instance of Kafka within the `withRunningKafka` closure.
3232

@@ -203,7 +203,7 @@ It takes care of instantiating and starting your streams as well as closing them
203203

204204
### How to use
205205

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"`
207207
* Have a look at the [example test](kafka-streams/src/test/scala/net/manub/embeddedkafka/streams/ExampleKafkaStreamsSpec.scala)
208208
* 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.
209209
* 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
250250
### How to use
251251

252252
* 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"`
254254
* Have your test extend the `EmbeddedKafkaWithSchemaRegistry` trait.
255255
* Enclose the code that needs a running instance of Kafka within the `withRunningKafka` closure.
256256
* Provide an implicit `EmbeddedKafkaConfigWithSchemaRegistryImpl`.

0 commit comments

Comments
 (0)