-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
60 lines (46 loc) · 1.39 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
60
plugins {
id "java"
id "application"
id 'checkstyle'
}
sourceCompatibility = 17
targetCompatibility = 17
group = 'com.epam.aidial'
version = "0.3.0-rc"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
checkstyle {
configDirectory = file("$rootProject.projectDir/checkstyle")
}
application {
mainClass = "com.epam.aidial.auth.helper.AuthProxy"
}
repositories {
mavenCentral()
}
dependencies {
implementation("com.epam.deltix:gflog-core:3.0.4")
implementation("com.epam.deltix:gflog-jcl:3.0.4")
implementation("com.epam.deltix:gflog-jul:3.0.4")
implementation("com.epam.deltix:gflog-slf4j:3.0.4")
implementation("javax.ws.rs:javax.ws.rs-api:2.1.1")
implementation("jakarta.validation:jakarta.validation-api:2.0.2")
constraints {
implementation('org.yaml:snakeyaml:2.2') {
because 'previous version 1.33 has security issue CVE-2022-1471'
}
}
constraints {
implementation('ch.qos.logback:logback-classic:1.4.12') {
because 'previous version 1.4.11 has security issue CVE-2023-6378'
}
}
implementation("org.springframework.boot:spring-boot-starter-web:3.3.5")
implementation("com.auth0:java-jwt:4.4.0")
implementation("com.auth0:jwks-rsa:0.22.1")
testImplementation("junit:junit:4.+")
testImplementation("org.mockito:mockito-core:5.5.0")
}