2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id "io.freefair.lombok" version "5.3.3.3"
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-12 11:42:07 +01:00
|
|
|
implementation libs.notnull
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
2023-03-12 11:42:07 +01:00
|
|
|
|
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-16 21:35:54 +01:00
|
|
|
implementation libs.commons.lang3
|
2023-03-12 11:42:07 +01:00
|
|
|
|
|
|
|
implementation libs.snakeyaml
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
|
|
|
}
|
|
|
|
|
|
|
|
|