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