mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-04-19 08:36:21 +00:00
31 lines
577 B
Groovy
31 lines
577 B
Groovy
configurations {
|
|
all {
|
|
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.commons.lang3
|
|
|
|
compileOnly libs.lombok
|
|
annotationProcessor libs.lombok
|
|
|
|
testImplementation libs.spring.boot.starter.test
|
|
|
|
testCompileOnly libs.lombok
|
|
testAnnotationProcessor libs.lombok
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
//publishing {
|
|
// publications {
|
|
// maven(MavenPublication) {
|
|
// artifactId 'hirs-structs'
|
|
// from components.java
|
|
// }
|
|
// }
|
|
//}
|