2024-09-27 11:45:54 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
|
|
|
|
id 'application'
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':code:functions:live-capture:api')
|
|
|
|
|
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:db')
|
2024-11-08 18:23:02 +00:00
|
|
|
implementation project(':code:libraries:blocking-thread-pool')
|
2024-11-10 12:33:57 +00:00
|
|
|
implementation project(':code:libraries:message-queue')
|
2024-09-27 11:45:54 +00:00
|
|
|
|
2024-11-08 17:55:02 +00:00
|
|
|
implementation project(':code:execution:api')
|
|
|
|
|
|
|
|
implementation libs.jsoup
|
|
|
|
implementation libs.rssreader
|
|
|
|
implementation libs.opencsv
|
|
|
|
implementation libs.sqlite
|
2024-09-27 11:45:54 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation libs.commons.lang3
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.guava
|
|
|
|
implementation dependencies.create(libs.guice.get()) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
implementation dependencies.create(libs.spark.get()) {
|
|
|
|
exclude group: 'org.eclipse.jetty'
|
|
|
|
}
|
|
|
|
implementation libs.bundles.jetty
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
|
|
|
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
|
|
|
|
testImplementation libs.commons.codec
|
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
|
|
|
|
|
|
|
}
|