mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-10-05 21:22:39 +02:00
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.
52 lines
1.3 KiB
Groovy
52 lines
1.3 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'nu.marginalia.index.perftest.PerfTestMain'
|
|
}
|
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
dependencies {
|
|
implementation project(':code:common:config')
|
|
implementation project(':code:common:db')
|
|
|
|
implementation project(':code:libraries:array')
|
|
implementation project(':code:libraries:native')
|
|
implementation project(':code:libraries:btree')
|
|
implementation project(':code:functions:language-processing')
|
|
implementation project(':code:common:linkdb')
|
|
implementation project(':code:index')
|
|
implementation project(':third-party:commons-codec')
|
|
implementation project(':code:functions:search-query')
|
|
implementation project(':code:functions:search-query:api')
|
|
|
|
implementation libs.slop
|
|
implementation libs.roaringbitmap
|
|
implementation libs.bundles.slf4j
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
implementation dependencies.create(it) {
|
|
exclude group: 'com.google.guava'
|
|
}
|
|
}
|
|
|
|
|
|
implementation libs.notnull
|
|
implementation libs.trove
|
|
implementation libs.fastutil
|
|
implementation libs.bundles.gson
|
|
implementation libs.bundles.mariadb
|
|
|
|
}
|