Skip to content
Snippets Groups Projects
Commit e80341ef authored by Rick Herrick's avatar Rick Herrick
Browse files

Added doclint flag to stop javadoc build errors from breaking build.

parent 54ad20f6
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,14 @@ cargo {
}
}
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
task sourceJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allSource
}
......@@ -170,7 +178,6 @@ publishing {
}
}
repositories {
mavenLocal()
maven {
credentials {
// These properties must be set in the ~/.gradle/gradle.properties file or passed on the Gradle command
......
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