MarginaliaSearch/code/libraries/braille-block-punch-cards/build.gradle

26 lines
448 B
Groovy
Raw Normal View History

2023-03-04 12:19:01 +00:00
plugins {
id 'java'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
2023-03-04 12:19:01 +00:00
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
2023-03-04 12:19:01 +00:00
dependencies {
implementation libs.bundles.slf4j
implementation libs.notnull
implementation libs.fastutil
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
test {
useJUnitPlatform()
}