Files
bastools/build.gradle
2025-10-23 14:54:48 -05:00

24 lines
360 B
Groovy

plugins {
id 'java'
}
ext {
// Dependency versions
clthVersion = "2.1"
}
subprojects {
sourceCompatibility = '21'
targetCompatibility = '21'
}
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc).tap {
configureEach {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
}