Skip to content

Commit

Permalink
kafka streams support on mac M1
Browse files Browse the repository at this point in the history
  • Loading branch information
rtc11 committed Apr 25, 2022
1 parent f887492 commit 3ad663e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion kafka-test/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
dependencies {
api("org.apache.kafka:kafka-streams-test-utils:3.1.0")
api("org.apache.kafka:kafka-streams-test-utils:3.1.0") {
// included in :kafka
exclude("org.rocksdb", "rocksdbjni")
}
implementation("io.micrometer:micrometer-registry-prometheus:1.8.5")
implementation(project(":kafka"))
implementation(kotlin("test"))
Expand Down
5 changes: 4 additions & 1 deletion kafka/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ dependencies {
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.2")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2")
implementation("io.micrometer:micrometer-registry-prometheus:1.8.5")
implementation("org.rocksdb:rocksdbjni:6.29.4.1") // M1 support

api("org.apache.kafka:kafka-clients:3.1.0")
api("org.apache.kafka:kafka-streams:3.1.0")
api("org.apache.kafka:kafka-streams:3.1.0") {
exclude("org.rocksdb", "rocksdbjni")
}
api("io.confluent:kafka-streams-avro-serde:7.0.1") {
exclude("org.apache.kafka", "kafka-clients")
}
Expand Down

0 comments on commit 3ad663e

Please sign in to comment.