Skip to content

Instantly share code, notes, and snippets.

@billydh
Last active November 24, 2020 10:11
Show Gist options
  • Save billydh/bfd940d1e063f76a928480c085390f9b to your computer and use it in GitHub Desktop.
Save billydh/bfd940d1e063f76a928480c085390f9b to your computer and use it in GitHub Desktop.
add dependencies for embedded kafka test
dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("software.amazon.awssdk:dynamodb")
implementation("io.projectreactor.kafka:reactor-kafka")
implementation("io.confluent:kafka-avro-serializer:6.0.0")
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
}
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.springframework.kafka:spring-kafka-test")
testImplementation("org.springframework.kafka:spring-kafka")
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment