2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 11:01:43 +02:00
|
|
|
|
2023-03-12 11:42:07 +01:00
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
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-07 17:14:32 +01:00
|
|
|
implementation project(':code:common:model')
|
2023-03-12 11:42:07 +01:00
|
|
|
implementation project(':code:common:config')
|
|
|
|
implementation project(':code:libraries:guarded-regex')
|
2023-12-10 17:30:43 +01:00
|
|
|
implementation project(':code:libraries:geo-ip')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2023-03-12 11:42:07 +01:00
|
|
|
implementation libs.notnull
|
|
|
|
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.rxjava
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.bundles.slf4j
|
2023-03-12 11:42:07 +01:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
2023-03-04 13:19:01 +01:00
|
|
|
|
2023-03-12 11:42:07 +01:00
|
|
|
implementation libs.guava
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.guice
|
2023-03-12 11:42:07 +01:00
|
|
|
|
|
|
|
implementation libs.commons.net
|
|
|
|
|
|
|
|
implementation libs.opencsv
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|