2023-08-29 19:15:34 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2018-09-06 13:47:33 +00:00
|
|
|
|
2023-08-29 19:15:34 +00:00
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
}
|
|
|
|
}
|
2018-09-06 13:47:33 +00:00
|
|
|
|
2023-08-29 19:15:34 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2018-09-06 13:47:33 +00:00
|
|
|
|
2023-08-29 19:15:34 +00:00
|
|
|
flatDir { dirs "lib" }
|
2018-09-06 13:47:33 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 19:15:34 +00:00
|
|
|
dependencies {
|
2024-11-21 17:07:57 +00:00
|
|
|
implementation libs.commons.lang3
|
2018-09-06 13:47:33 +00:00
|
|
|
|
2024-11-22 15:58:20 +00:00
|
|
|
compileOnly libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
|
2023-08-29 19:15:34 +00:00
|
|
|
// testCompile libs.mockito
|
2024-11-21 17:07:57 +00:00
|
|
|
testImplementation libs.junit.jupiter
|
|
|
|
testImplementation libs.junit.platform.launcher
|
|
|
|
testImplementation libs.hamcrest
|
2024-11-22 15:58:20 +00:00
|
|
|
|
|
|
|
testCompileOnly libs.lombok
|
|
|
|
testAnnotationProcessor libs.lombok
|
2024-01-24 19:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2018-09-06 13:47:33 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 19:15:34 +00:00
|
|
|
//publishing {
|
|
|
|
// publications {
|
|
|
|
// maven(MavenPublication) {
|
|
|
|
// artifactId 'hirs-structs'
|
|
|
|
// from components.java
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
2018-09-06 13:47:33 +00:00
|
|
|
|
|
|
|
|