mirror of
https://github.com/AppleCommander/bastools.git
synced 2026-01-26 08:16:14 +00:00
24 lines
360 B
Groovy
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')
|
|
}
|
|
}
|
|
}
|
|
}
|