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

26
build.gradle.kts Normal file
View File

@@ -0,0 +1,26 @@
plugins {
java
id("org.springframework.boot") version "3.2.0" apply false
id("io.spring.dependency-management") version "1.1.4" apply false
}
allprojects {
group = "com.zeenea.experiments.virtualthreads"
version = "0.0.1-SNAPSHOT"
tasks.withType<JavaCompile> {
options.compilerArgs.add("--release")
options.compilerArgs.add("21")
// options.compilerArgs.add("--enable-preview")
}
repositories {
mavenCentral()
}
// java {
// toolchain {
// languageVersion = JavaLanguageVersion.of(21)
// }
// }
}