Enable coroutines.
This commit is contained in:
@@ -1,13 +1,6 @@
|
||||
object Versions {
|
||||
const val springBoot = "3.4.3"
|
||||
const val springDependencyManagement = "1.1.7"
|
||||
const val kotlinJvm = "1.9.25"
|
||||
const val kotlinPluginSpring = "1.9.25"
|
||||
}
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.9.25"
|
||||
kotlin("plugin.spring") version "1.9.25"
|
||||
kotlin("jvm") version "2.1.20"
|
||||
kotlin("plugin.spring") version "2.1.20"
|
||||
id("io.spring.dependency-management") version "1.1.7"
|
||||
}
|
||||
|
||||
@@ -33,13 +26,14 @@ subprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(platform("org.springframework.boot:spring-boot-dependencies:${Versions.springBoot}"))
|
||||
implementation(platform("org.springframework.boot:spring-boot-dependencies:3.4.4"))
|
||||
implementation("com.michael-bull.kotlin-result:kotlin-result:2.0.1")
|
||||
}
|
||||
}
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom("org.springframework.boot:spring-boot-dependencies:${Versions.springBoot}")
|
||||
mavenBom("org.springframework.boot:spring-boot-dependencies:3.4.4")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user