CatgirlIntelligenceAgency/crawl/converting-model/build.gradle

42 lines
920 B
Groovy
Raw Normal View History

2023-03-04 13:19:01 +01: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 {
implementation project(':third-party')
implementation project(':common:model')
implementation project(':api:index-api')
implementation project(':common:service-discovery')
implementation project(':common:service-client')
implementation project(':libraries:language-processing')
implementation libs.lombok
annotationProcessor libs.lombok
implementation libs.bundles.slf4j
implementation libs.notnull
2023-03-06 18:32:13 +01:00
implementation libs.trove
2023-03-04 13:19:01 +01:00
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
test {
useJUnitPlatform()
}
task fastTests(type: Test) {
useJUnitPlatform {
excludeTags "slow"
}
}