CatgirlIntelligenceAgency/code/tools/screenshot-capture-tool/build.gradle

44 lines
1.0 KiB
Groovy
Raw Normal View History

2023-03-04 13:19:01 +01:00
plugins {
id 'java'
2023-03-06 18:32:13 +01:00
id 'application'
2023-03-04 13:19:01 +01:00
id 'jvm-test-suite'
id 'com.palantir.docker' version '0.35.0'
2023-03-04 13:19:01 +01:00
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
2023-03-04 13:19:01 +01:00
}
}
2023-03-06 18:32:13 +01:00
application {
mainClass = 'nu.marginalia.screenshot.ScreenshotCaptureToolMain'
applicationName = 'screenshot-capture-tool'
}
apply from: "$rootProject.projectDir/docker-service.gradle"
tasks.distZip.enabled = false
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:features-search:screenshots')
2023-03-07 17:14:32 +01:00
implementation project(':code:common:service')
2023-03-04 13:19:01 +01:00
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
2023-03-04 13:19:01 +01:00
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}