mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-01-05 04:34:16 +00:00
22 lines
394 B
Groovy
22 lines
394 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.log4j2
|
|
implementation libs.commons.codec
|
|
implementation libs.commons.io
|
|
implementation libs.commons.lang
|
|
implementation libs.spring.core
|
|
|
|
testImplementation libs.testng
|
|
}
|
|
|
|
ext.configDir = new File(projectDir, 'config')
|
|
ext.checkstyleConfigDir = "$configDir/checkstyle"
|
|
|