HIRS/HIRS_Structs/build.gradle

64 lines
1.2 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'checkstyle'
}
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
// testCompile libs.mockito
testImplementation libs.junit.jupiter
testImplementation libs.junit.platform.launcher
testImplementation libs.hamcrest
}
test {
useJUnitPlatform()
2018-09-06 13:47:33 +00:00
}
checkstyle {
toolVersion = '10.12.7'
configFile file("${rootDir}/config/checkstyle/checkstyle.xml")
}
// https://github.com/checkstyle/checkstyle/issues/14211#issuecomment-1884129948
configurations.checkstyle {
resolutionStrategy.capabilitiesResolution.withCapability("com.google.collections:google-collections") {
select("com.google.guava:guava:0")
}
}
checkstyleMain {
2024-11-08 20:48:21 +00:00
source = 'src/main/java'
}
checkstyleTest {
2024-11-08 20:48:21 +00:00
source = 'src/test/java'
}
tasks.withType(Checkstyle) {
reports {
xml.required = false
html.required = true
}
}
//publishing {
// publications {
// maven(MavenPublication) {
// artifactId 'hirs-structs'
// from components.java
// }
// }
//}
2018-09-06 13:47:33 +00:00