-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
38 lines (31 loc) · 981 Bytes
/
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "3.0.5" apply false
id("io.spring.dependency-management") version "1.1.0"
kotlin("jvm") version "1.8.10" apply false
kotlin("plugin.spring") version "1.8.10" apply false
}
group = "dev.bright"
version = "0.0.1-SNAPSHOT"
subprojects {
apply(plugin = "io.spring.dependency-management")
repositories {
mavenCentral()
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
dependencyManagement {
dependencies {
dependency("io.swagger.core.v3:swagger-annotations:2.2.8")
dependency("org.openapitools:jackson-databind-nullable:0.2.6")
dependency("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.3")
}
}
}