22 lines
382 B
Groovy
22 lines
382 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'jvm-test-suite'
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
toolchain {
|
||
|
languageVersion.set(JavaLanguageVersion.of(21))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation libs.bundles.slf4j
|
||
|
|
||
|
implementation libs.notnull
|
||
|
implementation libs.gson
|
||
|
|
||
|
testImplementation libs.bundles.slf4j.test
|
||
|
testImplementation libs.bundles.junit
|
||
|
testImplementation libs.mockito
|
||
|
|
||
|
}
|