-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (24 loc) · 1.15 KB
/
build.gradle
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
plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.36'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.36'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.16'
implementation group: 'org.springframework.kafka', name: 'spring-kafka', version: '3.3.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.18.2'
implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: '3.4.1'
testCompileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.36'
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.36'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '3.4.1'
testImplementation group: 'org.springframework.kafka', name: 'spring-kafka-test', version: '3.3.1'
}
test {
useJUnitPlatform()
}