2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-03-06 17:32:13 +00:00
|
|
|
id 'application'
|
2023-03-04 12:19:01 +00:00
|
|
|
id 'jvm-test-suite'
|
2024-07-31 08:39:50 +00:00
|
|
|
id 'com.google.cloud.tools.jib' version '3.4.3'
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-06 17:32:13 +00:00
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.screenshot.ScreenshotCaptureToolMain'
|
|
|
|
applicationName = 'screenshot-capture-tool'
|
|
|
|
}
|
|
|
|
|
2023-11-01 15:38:55 +00:00
|
|
|
|
2023-03-11 10:34:51 +00:00
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
2024-02-28 10:59:15 +00:00
|
|
|
apply from: "$rootProject.projectDir/docker.gradle"
|
2024-02-23 15:13:40 +00:00
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:common:model')
|
2023-03-12 09:50:31 +00:00
|
|
|
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.bundles.slf4j
|
|
|
|
implementation libs.bundles.selenium
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.commons.compress
|
|
|
|
implementation libs.commons.io
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2023-11-01 15:38:55 +00:00
|
|
|
implementation libs.gson
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
}
|
|
|
|
|