fix: address concurrency issues and add stress tests

This commit is contained in:
2026-03-13 16:15:07 +00:00
parent 28cf21f89a
commit a7d71293a5
7 changed files with 246 additions and 34 deletions

View File

@@ -0,0 +1,24 @@
plugins {
id 'java'
id 'io.github.reyerizo.gradle.jcstress' version '0.8.15'
}
group = 'dev.tommyjs'
version = '2.5.5'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
dependencies {
implementation project(':futur-api')
}
jcstress {
jcstressDependency = 'org.openjdk.jcstress:jcstress-core:0.16'
}