44 lines
1.0 KiB
Groovy
44 lines
1.0 KiB
Groovy
plugins {
|
|
id 'java'
|
|
|
|
id 'application'
|
|
id 'jvm-test-suite'
|
|
id 'com.palantir.docker' version '0.35.0'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'nu.marginalia.screenshot.ScreenshotCaptureToolMain'
|
|
applicationName = 'screenshot-capture-tool'
|
|
}
|
|
|
|
apply from: "$rootProject.projectDir/docker-service.gradle"
|
|
|
|
tasks.distZip.enabled = false
|
|
|
|
dependencies {
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:features-search:screenshots')
|
|
implementation project(':code:common:service')
|
|
|
|
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
|
|
implementation libs.gson
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|