Skip to content

v2.1.0

Compare
Choose a tag to compare
@Crim Crim released this 24 Apr 04:23
· 44 commits to master since this release
677892a

2.1.0 (4/24/2018)

  • Issue-5 Updated to support Kafka versions 1.0.x and 1.1.x. Thanks kasuri!

Breaking Change

This library now requires you to provide which version of Kafka you want to use.

See below for an example...for more details refer to README.

<!-- Declare kafka-junit4 dependency -->
<dependency>
    <groupId>com.salesforce.kafka.test</groupId>
    <artifactId>kafka-junit4</artifactId>
    <version>1.0.1</version>
    <scope>test</scope>
</dependency>

<!-- Now required to include a kafka dependencies explicitly -->
<dependency>
    <groupId>org.apache.kafka</groupId>
    <artifactId>kafka_2.11</artifactId>
    <version>0.11.0.1</version>
    <scope>test</scope>
</dependency>
<dependency>
    <groupId>org.apache.kafka</groupId>
    <artifactId>kafka-clients</artifactId>
    <version>0.11.0.1</version>
    <scope>test</scope>
</dependency>