-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (21 loc) · 710 Bytes
/
build.gradle
File metadata and controls
24 lines (21 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
testCompileOnly "org.projectlombok:lombok:1.18.38"
testAnnotationProcessor "org.projectlombok:lombok:1.18.38"
testImplementation 'org.testcontainers:kafka'
testImplementation 'org.apache.kafka:kafka-clients:4.0.0'
testImplementation 'org.assertj:assertj-core:3.27.3'
testImplementation 'com.google.guava:guava:23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'org.awaitility:awaitility:4.2.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
}
test {
useJUnitPlatform()
}