mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 21:29:00 +00:00
34 lines
821 B
Groovy
34 lines
821 B
Groovy
plugins {
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(22))
|
|
}
|
|
}
|
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
dependencies {
|
|
implementation project(':code:libraries:array')
|
|
implementation project(':code:libraries:btree')
|
|
implementation project(':code:index:query')
|
|
implementation project(':code:index:index-journal')
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:common:process')
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.prometheus
|
|
implementation libs.roaringbitmap
|
|
implementation libs.fastutil
|
|
implementation libs.trove
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
}
|