Files
virtual-threads-experiences/reactor-app/build.gradle.kts
Florian THIERRY 076a224bcc Initial commit.
2025-09-18 16:57:59 +02:00

25 lines
782 B
Kotlin

plugins {
id("java")
id("org.springframework.boot")
id("io.spring.dependency-management")
}
group = "com.zeenea.experiments.virtualthreads.reactorapp"
version = "0.0.1-SNAPSHOT"
dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
developmentOnly("org.springframework.boot:spring-boot-devtools")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
runtimeOnly("org.postgresql:postgresql")
compileOnly("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.withType<Test> {
useJUnitPlatform()
}