mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-23 23:02:32 +00:00
34 lines
626 B
Groovy
34 lines
626 B
Groovy
repositories {
|
|
mavenCentral()
|
|
|
|
flatDir { dirs "lib" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.commons.lang3
|
|
|
|
compileOnly libs.lombok
|
|
annotationProcessor libs.lombok
|
|
|
|
// testCompile libs.mockito
|
|
testImplementation libs.junit.jupiter
|
|
testImplementation libs.junit.platform.launcher
|
|
testImplementation libs.hamcrest
|
|
|
|
testCompileOnly libs.lombok
|
|
testAnnotationProcessor libs.lombok
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
//publishing {
|
|
// publications {
|
|
// maven(MavenPublication) {
|
|
// artifactId 'hirs-structs'
|
|
// from components.java
|
|
// }
|
|
// }
|
|
//}
|