2024-02-22 16:31:25 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2024-02-22 16:31:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2024-02-22 16:31:25 +00:00
|
|
|
dependencies {
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation 'org.jgrapht:jgrapht-core:1.5.2'
|
|
|
|
|
2024-02-22 16:31:25 +00:00
|
|
|
implementation project(':third-party:commons-codec')
|
2024-06-06 10:54:52 +00:00
|
|
|
implementation project(':third-party:parquet-floor')
|
2024-02-22 16:31:25 +00:00
|
|
|
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:api')
|
2024-02-28 10:40:11 +00:00
|
|
|
implementation project(':code:functions:link-graph:api')
|
2024-02-22 16:31:25 +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-08-10 07:50:10 +00:00
|
|
|
implementation project(':code:libraries:language-processing')
|
2024-02-22 16:31:25 +00:00
|
|
|
|
|
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:linkdb')
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:processes:converting-process:model')
|
2024-02-22 16:31:25 +00:00
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:functions:search-query:api')
|
2024-02-23 15:13:40 +00:00
|
|
|
implementation project(':code:index:index-forward')
|
|
|
|
implementation project(':code:index:index-reverse')
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation project(':code:index:query')
|
|
|
|
implementation project(':code:index:index-journal')
|
2024-02-22 16:31:25 +00:00
|
|
|
|
|
|
|
|
2024-08-13 07:50:05 +00:00
|
|
|
implementation libs.slop
|
2024-02-22 16:31:25 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
2024-02-22 17:01:35 +00:00
|
|
|
implementation libs.roaringbitmap
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-22 16:31:25 +00:00
|
|
|
implementation libs.notnull
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2024-02-22 16:31:25 +00:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2024-02-22 17:01:35 +00:00
|
|
|
testImplementation libs.commons.lang3
|
|
|
|
testImplementation project(':code:libraries:array')
|
|
|
|
|
|
|
|
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
|
2024-08-25 08:35:48 +00:00
|
|
|
testImplementation libs.commons.codec
|
2024-02-22 17:01:35 +00:00
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
|
|
|
testImplementation project(':code:libraries:term-frequency-dict')
|
|
|
|
testImplementation project(':code:libraries:braille-block-punch-cards')
|
2024-07-27 09:44:13 +00:00
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
2024-02-22 16:31:25 +00:00
|
|
|
}
|