40 lines
969 B
Text
40 lines
969 B
Text
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||
|
|
||
|
plugins {
|
||
|
id("org.springframework.boot") version "3.2.1"
|
||
|
id("io.spring.dependency-management") version "1.1.4"
|
||
|
kotlin("jvm") version "1.9.21"
|
||
|
kotlin("plugin.spring") version "1.9.21"
|
||
|
}
|
||
|
|
||
|
group = "com.example"
|
||
|
version = "0.0.1-SNAPSHOT"
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_21
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
||
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
||
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
||
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||
|
}
|
||
|
|
||
|
tasks.withType<KotlinCompile> {
|
||
|
kotlinOptions {
|
||
|
freeCompilerArgs += "-Xjsr305=strict"
|
||
|
jvmTarget = "21"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.withType<Test> {
|
||
|
useJUnitPlatform()
|
||
|
}
|