mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 13:19:02 +00:00
27 lines
498 B
Groovy
27 lines
498 B
Groovy
![]() |
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
||
|
|
||
|
dependencies {
|
||
|
implementation libs.bundles.slf4j
|
||
|
|
||
|
implementation project(':third-party:parquet-floor')
|
||
|
implementation libs.fastutil
|
||
|
|
||
|
testImplementation libs.bundles.slf4j.test
|
||
|
testImplementation libs.bundles.junit
|
||
|
testImplementation libs.mockito
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|