|
@@ -1,10 +1,8 @@
|
|
|
-import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
-
|
|
|
plugins {
|
|
|
alias(libs.plugins.org.springframework.boot)
|
|
|
alias(libs.plugins.io.spring.dependency.management)
|
|
|
- kotlin("jvm") version "2.0.0"
|
|
|
- kotlin("plugin.spring") version "2.0.0"
|
|
|
+ kotlin("jvm") version "2.2.0"
|
|
|
+ kotlin("plugin.spring") version "2.2.0"
|
|
|
}
|
|
|
|
|
|
repositories {
|
|
@@ -23,17 +21,14 @@ dependencies {
|
|
|
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
implementation("org.thymeleaf.extras:thymeleaf-extras-springsecurity6")
|
|
|
+ implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
|
|
|
+ implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
+ implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
testImplementation("org.springframework.security:spring-security-test")
|
|
|
}
|
|
|
|
|
|
-tasks.withType<KotlinCompile> {
|
|
|
- kotlinOptions {
|
|
|
- freeCompilerArgs = listOf("-Xjsr305=strict")
|
|
|
- jvmTarget = "17"
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
tasks.withType<Test> {
|
|
|
useJUnitPlatform()
|
|
|
}
|