1
1
mirror of https://github.com/MarginaliaSearch/MarginaliaSearch.git synced 2025-10-05 21:22:39 +02:00
Files
MarginaliaSearch/code/tools/integration-test/build.gradle
Viktor Lofgren c661ebb619 (refac) Move language-processing into functions
It's long surpassed the single-responsibility library it once was, and is as such out of place in its original location, and fits better among the function-type modules.
2025-09-18 10:30:40 +02:00

51 lines
1.7 KiB
Groovy

plugins {
id 'java'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
dependencies {
implementation project(':code:processes:crawling-process')
implementation project(':code:processes:converting-process')
implementation project(':code:processes:loading-process')
implementation project(':code:processes:crawling-process:model')
implementation project(':code:processes:converting-process:model')
implementation project(':code:index')
implementation project(':code:libraries:array')
implementation project(':code:libraries:btree')
implementation project(':code:functions:language-processing')
implementation project(':code:functions:search-query:api')
implementation project(':code:index:index-journal')
implementation project(':code:functions:link-graph:partition')
implementation project(':code:functions:search-query')
implementation project(':code:libraries:array')
implementation project(':code:common:db')
implementation project(':code:common:config')
implementation project(':code:common:linkdb')
implementation project(':code:common:service')
implementation project(':code:common:model')
implementation project(':code:functions:live-capture:api')
implementation libs.bundles.slf4j
implementation libs.bundles.grpc
implementation libs.mockito
implementation libs.notnull
implementation libs.guice
implementation libs.fastutil
implementation libs.trove
implementation libs.bundles.httpcomponents
testImplementation libs.bundles.junit
testImplementation project(':code:libraries:test-helpers')
}