MarginaliaSearch/code/index/index-reverse/build.gradle

44 lines
1.0 KiB
Groovy
Raw Normal View History

2023-03-04 12:19:01 +00:00
plugins {
id 'java'
id "io.freefair.lombok" version "5.3.3.3"
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
dependencies {
2023-03-07 16:14:32 +00:00
implementation project(':code:libraries:array')
implementation project(':code:libraries:btree')
implementation project(':code:libraries:random-write-funnel')
implementation project(':code:features:domain-ranking')
implementation project(':code:index:index-query')
implementation project(':code:index:index-journal')
implementation project(':code:index:lexicon')
implementation project(':code:common:model')
2023-03-04 12:19:01 +00:00
implementation libs.lombok
annotationProcessor libs.lombok
implementation libs.bundles.slf4j
implementation libs.prometheus
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
test {
useJUnitPlatform()
}
task fastTests(type: Test) {
useJUnitPlatform {
excludeTags "slow"
}
}