2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 11:01:43 +02:00
|
|
|
|
2023-03-28 16:58:46 +02:00
|
|
|
id 'application'
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 13:54:04 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-28 16:58:46 +02:00
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.tools.ExperimentRunnerMain'
|
|
|
|
applicationName = 'experiment-runner'
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.distZip.enabled = false
|
2023-03-16 21:35:54 +01:00
|
|
|
|
2024-02-23 16:13:40 +01:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-28 16:58:46 +02:00
|
|
|
dependencies {
|
|
|
|
implementation project(':third-party:rdrpostagger')
|
|
|
|
implementation project(':third-party:porterstemmer')
|
2023-11-04 14:24:17 +01:00
|
|
|
implementation project(':code:common:db')
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:service')
|
2025-09-18 10:29:54 +02:00
|
|
|
implementation project(':code:functions:language-processing')
|
2023-03-28 16:58:46 +02:00
|
|
|
implementation project(':code:processes:converting-process')
|
2024-07-27 11:44:13 +02:00
|
|
|
implementation project(':code:processes:crawling-process:model')
|
2023-03-12 10:50:31 +01:00
|
|
|
|
2023-10-31 16:10:21 +01:00
|
|
|
implementation project(':third-party:commons-codec')
|
2024-07-30 10:04:59 +02:00
|
|
|
implementation project(':code:processes:crawling-process:ft-link-parser')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
implementation libs.bundles.slf4j
|
2023-03-28 16:58:46 +02:00
|
|
|
implementation libs.notnull
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2024-05-23 14:20:01 +02:00
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.jsoup
|
2023-03-28 16:58:46 +02:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
|
|
|
|
implementation libs.bundles.nlp
|
|
|
|
implementation libs.commons.lang3
|
2023-11-04 14:24:17 +01:00
|
|
|
implementation libs.bundles.mariadb
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|