MarginaliaSearch/code/tools/load-test/build.gradle

32 lines
515 B
Groovy
Raw Normal View History

2023-04-02 07:43:43 +00:00
plugins {
id 'java'
2023-04-02 07:43:43 +00:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
2023-04-02 07:43:43 +00:00
}
}
dependencies {
implementation project(':code:common:config')
implementation project(':code:common:model')
implementation project(':code:libraries:term-frequency-dict')
implementation libs.bundles.slf4j
implementation libs.notnull
}
test {
useJUnitPlatform()
}
task fastTests(type: Test) {
useJUnitPlatform {
excludeTags "slow"
}
}