-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
59 lines (48 loc) · 1.54 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
plugins {
id "java"
id 'checkstyle'
id 'application'
id 'io.freefair.lombok' version '8.10'
}
group = 'com.epam.aidial'
version = "0.2.0-rc"
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'application'
apply plugin: 'io.freefair.lombok'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
checkstyle {
configDirectory = file("$rootProject.projectDir/checkstyle")
configProperties = [
"org.checkstyle.google.suppressionfilter.config":
"$rootProject.projectDir/checkstyle/checkstyle-suppressions.xml",
]
}
repositories {
mavenCentral()
}
dependencies {
implementation 'io.kubernetes:client-java:22.0.0'
implementation 'commons-io:commons-io:2.16.1'
implementation 'org.springframework.boot:spring-boot-starter-web:3.4.1'
implementation 'org.springframework.boot:spring-boot-starter-webflux:3.4.1'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.4.1'
testImplementation 'io.projectreactor:reactor-test:3.6.10'
testImplementation 'org.assertj:assertj-core:3.26.3'
// Security fix:
implementation 'io.netty:netty-common:4.1.115.Final' // CVE-2024-47535
}
application {
mainClass = 'com.epam.aidial.Application'
}
test {
useJUnitPlatform()
}