2024-02-14 10:11:23 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2024-02-14 10:11:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2024-02-14 10:11:23 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation project(':code:libraries:blocking-thread-pool')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation libs.notnull
|
|
|
|
|
|
|
|
implementation libs.jsoup
|
|
|
|
implementation libs.sqlite
|
|
|
|
|
|
|
|
implementation libs.guice
|
|
|
|
implementation libs.guava
|
|
|
|
implementation libs.gson
|
|
|
|
implementation libs.zstd
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.commons.compress
|
|
|
|
implementation libs.xz
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
maxHeapSize = "8G"
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|