MarginaliaSearch/tools/screenshot/build.gradle

51 lines
1.1 KiB
Groovy
Raw Normal View History

2023-03-04 12:19:01 +00:00
plugins {
id 'java'
id "io.freefair.lombok" version "5.3.3.3"
2023-03-06 17:32:13 +00:00
id 'application'
2023-03-04 12:19:01 +00:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
2023-03-06 17:32:13 +00:00
application {
mainClass = 'nu.marginalia.screenshot.ScreenshotCaptureToolMain'
applicationName = 'screenshot-capture-tool'
}
tasks.distZip.enabled = false
2023-03-04 12:19:01 +00:00
dependencies {
2023-03-07 16:14:32 +00:00
implementation project(':code:common:model')
implementation project(':code:features-search:screenshots')
2023-03-07 16:14:32 +00:00
implementation project(':code:common:service')
2023-03-04 12:19:01 +00:00
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"
}
2023-03-07 15:37:08 +00:00
}