-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
31 lines (27 loc) · 1.02 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
plugins {
java
}
group = "com.github.shoothzj"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
annotationProcessor("org.projectlombok:lombok:1.18.28")
compileOnly("org.projectlombok:lombok:1.18.28")
implementation("org.apache.kafka:kafka-clients:3.0.0")
implementation("io.netty:netty-common:4.1.72.Final")
implementation("com.google.guava:guava:31.0.1-jre")
implementation("org.apache.logging.log4j:log4j-core:2.17.0")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:2.17.0")
testAnnotationProcessor("org.projectlombok:lombok:1.18.28")
testCompileOnly("org.projectlombok:lombok:1.18.28")
testImplementation("org.apache.kafka:kafka_2.13:3.0.0")
testImplementation("org.assertj:assertj-core:3.21.0")
testImplementation("org.mockito:mockito-junit-jupiter:4.2.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}