2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-08-23 16:34:32 +02:00
|
|
|
id "io.freefair.lombok" version "8.2.2"
|
2023-08-23 15:30:55 +02:00
|
|
|
id 'com.palantir.docker' version '0.35.0'
|
2023-03-04 13:19:01 +01:00
|
|
|
id 'application'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.search.SearchMain'
|
|
|
|
applicationName = 'search-service'
|
|
|
|
}
|
|
|
|
|
2023-03-11 11:34:51 +01:00
|
|
|
tasks.distZip.enabled = false
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
apply from: "$rootProject.projectDir/docker-service.gradle"
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-08-23 15:37:49 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(20))
|
2023-03-04 13:19:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-03-25 15:26: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:service')
|
|
|
|
implementation project(':code:common:config')
|
2023-03-12 10:50:31 +01:00
|
|
|
implementation project(':code:features-index:index-query')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:libraries:easy-lsh')
|
|
|
|
implementation project(':code:libraries:language-processing')
|
2023-03-11 13:48:40 +01:00
|
|
|
implementation project(':code:libraries:braille-block-punch-cards')
|
2023-03-13 23:40:26 +01:00
|
|
|
implementation project(':code:libraries:term-frequency-dict')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:api:assistant-api')
|
|
|
|
implementation project(':code:api:index-api')
|
|
|
|
implementation project(':code:api:search-api')
|
|
|
|
implementation project(':code:common:service-discovery')
|
|
|
|
implementation project(':code:common:service-client')
|
|
|
|
implementation project(':code:common:renderer')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2023-03-12 10:50:31 +01:00
|
|
|
implementation project(':code:features-search:screenshots')
|
|
|
|
implementation project(':code:features-search:random-websites')
|
|
|
|
implementation project(':code:features-search:query-parser')
|
2023-03-16 21:35:54 +01:00
|
|
|
implementation project(':code:features-search:result-ranking')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
implementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.rxjava
|
|
|
|
implementation libs.spark
|
|
|
|
implementation libs.opencsv
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
implementation libs.bundles.nlp
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
maxHeapSize = "8G"
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
task fastTests(type: Test) {
|
|
|
|
maxHeapSize = "8G"
|
|
|
|
useJUnitPlatform {
|
|
|
|
excludeTags "slow"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|