Skip to content
Snippets Groups Projects
Commit 6b1183a9 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Ignore javadoc lint

parent 27fcd7a2
No related branches found
No related tags found
No related merge requests found
Pipeline #15952 passed with stage
in 22 minutes and 2 seconds
......@@ -24,6 +24,12 @@ allprojects {
}
jcenter()
}
tasks.withType(Javadoc) {
// Ignores errors from mavenAndroidJavadocs task
// (reference: github.com/novoda/bintray-release/issues/71#issuecomment-164324255)
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}
ext {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment