MarginaliaSearch/code/libraries/btree/build.gradle

27 lines
493 B
Groovy
Raw Normal View History

2023-03-04 12:19:01 +00:00
plugins {
id 'java'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(22))
2023-03-04 12:19:01 +00:00
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
2023-03-04 12:19:01 +00:00
dependencies {
2023-03-07 16:14:32 +00:00
implementation project(':code:libraries:array')
implementation project(':code:libraries:next-prime')
2023-03-04 12:19:01 +00:00
implementation libs.bundles.slf4j
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
test {
useJUnitPlatform()
}