CatgirlIntelligenceAgency/code/index/build.gradle

65 lines
2.1 KiB
Groovy
Raw Permalink Normal View History

2024-02-22 17:31:25 +01:00
plugins {
id 'java'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
2024-02-22 17:31:25 +01:00
dependencies {
2024-02-22 18:01:35 +01:00
implementation 'org.jgrapht:jgrapht-core:1.5.2'
2024-02-22 17:31:25 +01:00
implementation project(':third-party:commons-codec')
2024-02-22 18:01:35 +01:00
implementation project(':code:index:api')
implementation project(':code:functions:link-graph:api')
2024-02-22 17:31:25 +01:00
implementation project(':code:libraries:array')
implementation project(':code:libraries:btree')
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')
implementation project(':code:functions:search-query:api')
implementation project(':code:index:index-forward')
implementation project(':code:index:index-reverse')
2024-02-22 18:01:35 +01:00
implementation project(':code:index:query')
implementation project(':code:index:index-journal')
2024-02-22 17:31:25 +01:00
implementation libs.bundles.slf4j
implementation libs.prometheus
2024-02-22 18:01:35 +01:00
implementation libs.roaringbitmap
2024-02-22 17:31:25 +01:00
implementation libs.bundles.grpc
implementation libs.notnull
implementation libs.guice
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 18:01:35 +01:00
testImplementation libs.commons.lang3
2024-02-22 17:31:25 +01:00
testImplementation project(':code:common:process')
2024-02-22 18:01:35 +01:00
testImplementation project(':code:libraries:array')
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
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-02-22 17:31:25 +01:00
}