2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2024-02-22 13:01:23 +00:00
|
|
|
id 'application'
|
2023-03-04 12:19:01 +00:00
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-20 10:41:14 +00:00
|
|
|
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
2024-02-22 13:01:23 +00:00
|
|
|
implementation project(':code:functions:domain-info:api')
|
2024-02-28 10:40:11 +00:00
|
|
|
implementation project(':code:functions:link-graph:api')
|
2024-02-22 13:01:23 +00:00
|
|
|
|
2023-03-07 16:14:32 +00:00
|
|
|
implementation project(':code:common:config')
|
2024-02-22 13:01:23 +00:00
|
|
|
implementation project(':code:common:service')
|
|
|
|
implementation project(':code:common:model')
|
|
|
|
implementation project(':code:common:db')
|
2023-03-04 12:19:01 +00:00
|
|
|
|
2024-02-22 13:01:23 +00:00
|
|
|
implementation project(':code:libraries:geo-ip')
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
implementation libs.prometheus
|
2024-05-23 12:20:01 +00:00
|
|
|
implementation libs.guava
|
|
|
|
libs.bundles.grpc.get().each {
|
|
|
|
implementation dependencies.create(it) {
|
|
|
|
exclude group: 'com.google.guava'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.notnull
|
2024-05-23 12:20:01 +00:00
|
|
|
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
|
2024-02-22 13:01:23 +00:00
|
|
|
implementation libs.opencsv
|
|
|
|
implementation libs.trove
|
2024-02-27 19:25:52 +00:00
|
|
|
implementation libs.roaringbitmap
|
2024-02-22 13:01:23 +00:00
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.bundles.mariadb
|
2023-03-04 12:19:01 +00:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
|
2024-02-22 13:01:23 +00:00
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|