Disable doclint in JDK 8 Javadoc, closes #45
This commit is contained in:
parent
eca77a0afc
commit
507f9eca1e
@ -14,6 +14,14 @@ allprojects {
|
|||||||
|
|
||||||
ext.androidBuildVersionTools = "23.0.3"
|
ext.androidBuildVersionTools = "23.0.3"
|
||||||
ext.gdxVersion = "1.9.3"
|
ext.gdxVersion = "1.9.3"
|
||||||
|
|
||||||
|
// Disable Java 8 doclint
|
||||||
|
if (JavaVersion.current().isJava8Compatible()) {
|
||||||
|
tasks.withType(Javadoc) {
|
||||||
|
options.addStringOption('Xdoclint:none', '-quiet')
|
||||||
|
logging.captureStandardError LogLevel.INFO
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def androidCompileSdk() { return 23 }
|
def androidCompileSdk() { return 23 }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user