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

34 lines
625 B
Groovy
Raw Normal View History

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