remove javadoc jar
This commit is contained in:
parent
8243775b5c
commit
e7fad09f14
1 changed files with 0 additions and 21 deletions
21
build.gradle
21
build.gradle
|
@ -56,24 +56,6 @@ task sourcesJar(type: Jar, dependsOn: classes) {
|
||||||
from sourceSets.main.allSource
|
from sourceSets.main.allSource
|
||||||
}
|
}
|
||||||
|
|
||||||
// create a javadoc file for publishing
|
|
||||||
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
||||||
from javadoc.destinationDir
|
|
||||||
from "LICENSE"
|
|
||||||
classifier = "javadoc"
|
|
||||||
}
|
|
||||||
|
|
||||||
// make the javadoc tool be more lenient when using Java 8
|
|
||||||
// this fixes the javadoc tool breaking on things like self-closed <br /> tags
|
|
||||||
// see https://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html
|
|
||||||
if (JavaVersion.current().isJava8Compatible()) {
|
|
||||||
allprojects {
|
|
||||||
tasks.withType(Javadoc) {
|
|
||||||
options.addStringOption("Xdoclint:none", "-quiet")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
from "LICENSE"
|
from "LICENSE"
|
||||||
}
|
}
|
||||||
|
@ -86,7 +68,6 @@ publishing {
|
||||||
artifact(jar) {
|
artifact(jar) {
|
||||||
builtBy remapJar
|
builtBy remapJar
|
||||||
}
|
}
|
||||||
artifact javadocJar
|
|
||||||
artifact(sourcesJar) {
|
artifact(sourcesJar) {
|
||||||
builtBy remapSourcesJar
|
builtBy remapSourcesJar
|
||||||
}
|
}
|
||||||
|
@ -99,5 +80,3 @@ publishing {
|
||||||
// mavenLocal()
|
// mavenLocal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tasks.build.dependsOn javadocJar
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue