-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (59 loc) · 2.55 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
61
62
63
64
65
66
plugins {
id "java"
}
group = "com.github.mroose"
version = "latest"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
ext {
slf4jApiVersion = "2.0.13"
lombokVersion = "1.18.32"
mapstructVersion = "1.5.5.Final"
lombokMapstructBindingVersion = "0.2.0"
jakartaEeBomVersion = "10.0.0"
apacheCommonsLangVersion = "3.14.0"
apacheCommonsIoVersion = "2.16.1"
googleLibrariesBomVersion = "26.40.0"
jacksonBomVersion = "2.17.1"
jsonPathVersion = "2.9.0"
okHttpBomVersion = "4.12.0"
junitBomVersion = "5.10.2"
mockitoBomVersion = "5.12.0"
assertjBomVersion = "3.26.0"
testcontainersBomVersion = "1.19.8"
}
dependencies {
implementation "org.slf4j:slf4j-api:$slf4jApiVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
implementation "org.mapstruct:mapstruct:$mapstructVersion"
annotationProcessor "org.mapstruct:mapstruct-processor:$mapstructVersion"
annotationProcessor "org.projectlombok:lombok-mapstruct-binding:$lombokMapstructBindingVersion"
implementation platform("jakarta.platform:jakarta.jakartaee-bom:$jakartaEeBomVersion")
implementation "jakarta.annotation:jakarta.annotation-api"
implementation "org.apache.commons:commons-lang3:$apacheCommonsLangVersion"
implementation "commons-io:commons-io:$apacheCommonsIoVersion"
implementation platform("com.google.cloud:libraries-bom:$googleLibrariesBomVersion")
implementation "com.google.guava:guava"
implementation "com.google.code.gson:gson"
implementation platform("com.fasterxml.jackson:jackson-bom:$jacksonBomVersion")
implementation "com.fasterxml.jackson.core:jackson-databind"
implementation "com.jayway.jsonpath:json-path:$jsonPathVersion"
implementation platform("com.squareup.okhttp3:okhttp-bom:$okHttpBomVersion")
implementation "com.squareup.okhttp3:okhttp"
testImplementation platform("org.junit:junit-bom:$junitBomVersion")
testImplementation "org.junit.jupiter:junit-jupiter"
testImplementation platform("org.mockito:mockito-bom:$mockitoBomVersion")
testImplementation "org.mockito:mockito-core"
testImplementation platform("org.assertj:assertj-bom:$assertjBomVersion")
testImplementation "org.assertj:assertj-core"
testImplementation platform("org.testcontainers:testcontainers-bom:$testcontainersBomVersion")
testImplementation "org.testcontainers:testcontainers"
testImplementation "org.testcontainers:junit-jupiter"
}
tasks.named("test") {
useJUnitPlatform()
}