HIRS/HIRS_Structs/build.gradle

46 lines
740 B
Groovy
Raw Normal View History

plugins {
id 'java'
}
2018-09-06 13:47:33 +00:00
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
2018-09-06 13:47:33 +00:00
repositories {
mavenCentral()
2018-09-06 13:47:33 +00:00
flatDir { dirs "lib" }
2018-09-06 13:47:33 +00:00
}
dependencies {
implementation libs.commons.lang3
2018-09-06 13:47:33 +00:00
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()
2018-09-06 13:47:33 +00:00
}
//publishing {
// publications {
// maven(MavenPublication) {
// artifactId 'hirs-structs'
// from components.java
// }
// }
//}
2018-09-06 13:47:33 +00:00