mirror of
https://github.com/tommyskeff/futur4j.git
synced 2026-03-19 02:01:22 +00:00
25 lines
413 B
Groovy
25 lines
413 B
Groovy
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'
|
|
}
|