56 lines
1.6 KiB
Plaintext
56 lines
1.6 KiB
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
import org.springframework.boot.gradle.tasks.bundling.BootBuildImage
|
|
|
|
plugins {
|
|
id("org.springframework.boot") version "2.4.3"
|
|
id("io.spring.dependency-management") version "1.0.11.RELEASE"
|
|
kotlin("jvm") version "1.4.30"
|
|
kotlin("plugin.spring") version "1.4.30"
|
|
id("org.springframework.experimental.aot") version "0.9.0"
|
|
}
|
|
|
|
group = "com.cubetiqs.function"
|
|
version = "0.0.1-SNAPSHOT"
|
|
java.sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
repositories {
|
|
maven { url = uri("https://repo.spring.io/release") }
|
|
mavenCentral()
|
|
}
|
|
|
|
extra["springCloudVersion"] = "2020.0.1"
|
|
|
|
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")
|
|
implementation("org.springframework.cloud:spring-cloud-function-web")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom("org.springframework.cloud:spring-cloud-dependencies:${property("springCloudVersion")}")
|
|
}
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
freeCompilerArgs = listOf("-Xjsr305=strict")
|
|
jvmTarget = "11"
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType<BootBuildImage> {
|
|
builder = "paketobuildpacks/builder:tiny"
|
|
environment = mapOf("BP_NATIVE_IMAGE" to "true")
|
|
}
|