2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 11:01:43 +02:00
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
id "de.undercouch.download" version "5.1.0"
|
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-09-23 11:01:43 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
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')
|
2024-01-08 15:53:13 +01:00
|
|
|
implementation project(':code:common:service-client')
|
|
|
|
implementation project(':code:api:query-api')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2024-02-16 18:04:58 +01:00
|
|
|
implementation 'org.jgrapht:jgrapht-core:1.5.2'
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.roaringbitmap
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
2024-02-16 18:04:58 +01:00
|
|
|
implementation libs.hll
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2024-02-16 18:04:58 +01:00
|
|
|
testImplementation project(':code:libraries:array')
|
2024-02-16 20:22:01 +01:00
|
|
|
|
2024-02-16 18:04:58 +01:00
|
|
|
testImplementation libs.commons.lang3
|
2023-03-04 13:19:01 +01:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2024-02-16 18:04:58 +01:00
|
|
|
|
2024-02-16 20:22:01 +01:00
|
|
|
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
|
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
2024-02-16 18:04:58 +01:00
|
|
|
}
|