2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-03-21 11:09:24 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(22))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
2023-03-06 17:32:13 +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-05 11:31:15 +00:00
|
|
|
implementation project(':code:libraries:array')
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|