30 lines
495 B
Groovy
30 lines
495 B
Groovy
|
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(':code:common:db')
|
||
|
|
||
|
testImplementation libs.bundles.slf4j.test
|
||
|
testImplementation libs.bundles.junit
|
||
|
testImplementation libs.mockito
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
task fastTests(type: Test) {
|
||
|
useJUnitPlatform {
|
||
|
excludeTags "slow"
|
||
|
}
|
||
|
}
|