Last active
November 24, 2020 10:11
-
-
Save billydh/bfd940d1e063f76a928480c085390f9b to your computer and use it in GitHub Desktop.
add dependencies for embedded kafka test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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