mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 05:18:58 +00:00
45 lines
961 B
Groovy
45 lines
961 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(':third-party')
|
||
|
implementation project(':common:model')
|
||
|
implementation project(':features:screenshots')
|
||
|
implementation project(':common:service')
|
||
|
|
||
|
implementation libs.lombok
|
||
|
annotationProcessor libs.lombok
|
||
|
implementation libs.bundles.slf4j
|
||
|
implementation libs.bundles.selenium
|
||
|
implementation libs.bundles.mariadb
|
||
|
implementation libs.notnull
|
||
|
implementation libs.commons.compress
|
||
|
implementation libs.commons.io
|
||
|
implementation libs.guice
|
||
|
|
||
|
testImplementation libs.bundles.slf4j.test
|
||
|
testImplementation libs.bundles.junit
|
||
|
testImplementation libs.mockito
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
task fastTests(type: Test) {
|
||
|
useJUnitPlatform {
|
||
|
excludeTags "slow"
|
||
|
}
|
||
|
}
|