2023-07-17 13:57:32 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 11:01:43 +02:00
|
|
|
|
2023-07-17 13:57:32 +02:00
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-09-23 11:01:43 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
2023-07-17 13:57:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 16:13:40 +01:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-07-17 13:57:32 +02:00
|
|
|
dependencies {
|
2023-10-14 12:07:40 +02:00
|
|
|
implementation project(':code:common:config')
|
2023-07-17 13:57:32 +02:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|