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 { useJUnitPlatform() }