-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
75 lines (65 loc) · 1.86 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
70
71
72
73
74
75
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.springframework.boot.gradle.tasks.bundling.BootJar
plugins {
kotlin("jvm")
kotlin("kapt")
id("org.jlleitschuh.gradle.ktlint") version "11.6.1"
id("io.spring.dependency-management") version "1.1.0"
id("org.springframework.boot")
}
repositories {
mavenCentral()
google()
}
tasks {
withType<Jar> { enabled = true }
withType<BootJar> { enabled = false }
}
subprojects {
apply(plugin = "kotlin")
apply(plugin = "kotlin-kapt")
apply(plugin = "org.jlleitschuh.gradle.ktlint")
repositories {
mavenCentral()
google()
}
dependencies {
val kotestVersion: String by properties
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.0")
testImplementation("io.kotest:kotest-runner-junit5-jvm:$kotestVersion")
testImplementation("io.kotest:kotest-assertions-core:$kotestVersion")
testImplementation("io.mockk:mockk:1.13.5")
}
tasks {
withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
test {
useJUnitPlatform()
}
}
}
configure(
subprojects.filter {
it.path in listOf(
":adapter-in:admin",
":adapter-in:support:auth",
":adapter-in:support:oas",
":domain",
)
},
) {
configurations.register("testArchive") {
extendsFrom(configurations.testImplementation.get())
}
tasks.register<Jar>(name = "testJar") {
from(project.sourceSets.test.get().output)
archiveClassifier.set("test")
}
artifacts {
add("testArchive", tasks.getByName("testJar"))
}
}