40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||
|
|
||
|
plugins {
|
||
|
id("org.springframework.boot") version "2.6.5"
|
||
|
id("io.spring.dependency-management") version "1.0.11.RELEASE"
|
||
|
kotlin("jvm") version "1.6.10"
|
||
|
kotlin("plugin.spring") version "1.6.10"
|
||
|
}
|
||
|
|
||
|
group = "com.cubetiqs"
|
||
|
version = "0.0.1-SNAPSHOT"
|
||
|
java.sourceCompatibility = JavaVersion.VERSION_11
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
||
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
||
|
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")
|
||
|
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||
|
testImplementation("io.projectreactor:reactor-test")
|
||
|
}
|
||
|
|
||
|
tasks.withType<KotlinCompile> {
|
||
|
kotlinOptions {
|
||
|
freeCompilerArgs = listOf("-Xjsr305=strict")
|
||
|
jvmTarget = "11"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tasks.withType<Test> {
|
||
|
useJUnitPlatform()
|
||
|
}
|