CatgirlIntelligenceAgency/code/features-crawl/crawl-blocklist/build.gradle

49 lines
994 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"
2023-03-04 13:19:01 +01:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(20))
2023-03-04 13:19:01 +01:00
}
}
dependencies {
2023-03-07 17:14:32 +01:00
implementation project(':code:common:model')
implementation project(':code:common:config')
implementation project(':code:libraries:guarded-regex')
2023-03-04 13:19:01 +01:00
implementation libs.notnull
2023-03-04 13:19:01 +01:00
implementation libs.lombok
annotationProcessor libs.lombok
implementation libs.bundles.gson
implementation libs.rxjava
2023-03-04 13:19:01 +01:00
implementation libs.bundles.slf4j
testImplementation libs.bundles.slf4j.test
2023-03-04 13:19:01 +01:00
implementation libs.guava
2023-03-04 13:19:01 +01:00
implementation libs.guice
implementation libs.commons.net
implementation libs.opencsv
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"
}
}