CatgirlIntelligenceAgency/code/processes/converting-process/build.gradle

106 lines
3.0 KiB
Groovy
Raw Normal View History

2023-03-04 13:19:01 +01:00
plugins {
id 'java'
id "io.freefair.lombok" version "5.3.3.3"
id 'application'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(20))
2023-03-04 13:19:01 +01:00
}
}
application {
mainClass = 'nu.marginalia.converting.ConverterMain'
applicationName = 'converter-process'
}
tasks.distZip.enabled = false
2023-03-04 13:19:01 +01:00
dependencies {
implementation project(':third-party:monkey-patch-gson')
implementation project(':code:common:process')
implementation project(':third-party:porterstemmer')
implementation project(':third-party:count-min-sketch')
2023-07-17 13:57:32 +02:00
implementation project(':code:api:index-api')
2023-07-17 13:57:32 +02:00
implementation project(':code:api:process-mqapi')
2023-03-07 17:14:32 +01:00
implementation project(':code:common:model')
implementation project(':code:common:db')
2023-03-07 17:14:32 +01:00
implementation project(':code:common:service')
implementation project(':code:common:config')
implementation project(':code:libraries:message-queue')
implementation project(':code:common:service-discovery')
implementation project(':code:common:service-client')
2023-03-07 17:14:32 +01:00
implementation project(':code:libraries:guarded-regex')
implementation project(':code:libraries:easy-lsh')
implementation project(':code:libraries:big-string')
implementation project(':code:libraries:language-processing')
implementation project(':code:process-models:converting-model')
implementation project(':code:process-models:crawling-model')
2023-03-04 13:19:01 +01:00
implementation project(':code:features-convert:adblock')
implementation project(':code:features-convert:topic-detection')
implementation project(':code:features-convert:pubdate')
implementation project(':code:features-convert:keyword-extraction')
implementation project(':code:features-convert:summary-extraction')
implementation project(':code:features-crawl:crawl-blocklist')
implementation project(':code:features-crawl:link-parser')
testImplementation project(':code:libraries:term-frequency-dict')
2023-03-04 13:19:01 +01:00
implementation libs.lombok
annotationProcessor libs.lombok
implementation libs.bundles.slf4j
implementation libs.notnull
implementation libs.jsoup
implementation libs.guice
implementation libs.guava
implementation libs.bundles.gson
2023-03-04 13:19:01 +01:00
implementation libs.zstd
implementation libs.bundles.mariadb
implementation libs.bundles.nlp
2023-03-04 13:19:01 +01:00
implementation libs.trove
implementation libs.fastutil
implementation libs.crawlercommons
implementation libs.commons.lang3
2023-08-07 12:57:38 +02:00
implementation libs.commons.compress
implementation libs.sqlite
2023-03-04 13:19:01 +01:00
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
2023-08-07 12:57:38 +02:00
implementation 'org.tukaani:xz:1.8'
testImplementation project(':code:processes:test-data')
testImplementation project(':code:processes:crawling-process')
2023-03-04 13:19:01 +01:00
}
test {
maxHeapSize = "8G"
useJUnitPlatform()
}
task fastTests(type: Test) {
useJUnitPlatform {
excludeTags "slow"
}
}