mirror of
https://github.com/AppleCommander/bastools.git
synced 2026-04-20 08:16:33 +00:00
24 lines
393 B
Groovy
24 lines
393 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
ext {
|
|
isSnapshotVersion = version.endsWith("SNAPSHOT")
|
|
isReleaseVersion = !ext.isSnapshotVersion
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = 21
|
|
targetCompatibility = 21
|
|
}
|
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
allprojects {
|
|
tasks.withType(Javadoc).tap {
|
|
configureEach {
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
}
|
|
}
|
|
}
|
|
}
|