HIRS/HIRS_Structs/build.gradle

27 lines
385 B
Groovy
Raw Normal View History

plugins {
id 'java'
}
2018-09-06 13:47:33 +00:00
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
2018-09-06 13:47:33 +00:00
dependencies {
implementation libs.commons.lang
testImplementation libs.mockito
testImplementation libs.testng
2018-09-06 13:47:33 +00:00
}
ext.configDir = new File(projectDir, 'config')
ext.checkstyleConfigDir = "$configDir/checkstyle"