-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
69 lines (60 loc) · 2.6 KB
/
build.gradle.kts
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
67
68
69
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "2.0.0"
}
group = "com.github.mroose"
version = "latest"
kotlin {
jvmToolchain(21)
}
val kotlinVersion = "2.0.0"
val slf4jApiVersion = "2.0.13"
val mapstructVersion = "1.5.5.Final"
val jakartaEeBomVersion = "10.0.0"
val apacheCommonsLangVersion = "3.14.0"
val apacheCommonsIoVersion = "2.16.1"
val googleLibrariesBomVersion = "26.40.0"
val jacksonBomVersion = "2.17.1"
val jsonPathVersion = "2.9.0"
val okHttpBomVersion = "4.12.0"
val junitBomVersion = "5.10.2"
val mockitoBomVersion = "5.12.0"
val assertjBomVersion = "3.26.0"
val testcontainersBomVersion = "1.19.8"
dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom:$kotlinVersion"))
implementation("org.jetbrains.kotlin:kotlin-stdlib")
implementation("org.slf4j:slf4j-api:$slf4jApiVersion")
implementation("org.mapstruct:mapstruct:$mapstructVersion")
annotationProcessor("org.mapstruct:mapstruct-processor:$mapstructVersion")
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.module:jackson-module-kotlin")
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.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
jvmTarget = "21"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}