-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (30 loc) · 826 Bytes
/
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
30
31
32
33
34
35
36
37
38
39
plugins {
id 'java-library'
id 'org.springframework.boot' version '3.3.4'
id 'io.spring.dependency-management' version '1.1.6'
}
version = '1.8.0-17'
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
group 'ru.owpk.kafkamvc'
dependencies {
//lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
//spring
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.kafka:spring-kafka'
//Jackson Object Mapper
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.0'
//Validation
implementation 'com.google.code.findbugs:jsr305:3.0.2'
}
tasks.getByName "bootJar", {
enabled = false
}