2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +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:btree')
|
2024-06-06 10:54:52 +00:00
|
|
|
implementation project(':code:libraries:coded-sequence')
|
2024-07-30 10:01:53 +00:00
|
|
|
implementation project(':code:libraries:language-processing')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:query')
|
|
|
|
implementation project(':code:index:index-journal')
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:common:model')
|
2024-11-21 15:00:09 +00:00
|
|
|
implementation project(':code:common:service')
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:converting-process:model')
|
2023-03-12 09:04:48 +00:00
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.roaringbitmap
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.trove
|
2024-08-13 07:50:05 +00:00
|
|
|
implementation libs.slop
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
2023-03-04 12:19:01 +00:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|