Initial commit.

This commit is contained in:
Florian THIERRY
2025-09-18 16:57:59 +02:00
commit 076a224bcc
45 changed files with 1123 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
plugins {
id("java")
id("org.springframework.boot")
id("io.spring.dependency-management")
}
group = "com.zeenea.experiments.virtualthreads.virtualthreadsapp"
version = "0.0.1-SNAPSHOT"
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
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()
}