Only add javadoc jar to common and api

This commit is contained in:
jmp 2021-05-24 23:25:00 -07:00 committed by Nassim
parent e2d9e44be3
commit cbf71e2289
3 changed files with 8 additions and 1 deletions

View File

@ -21,3 +21,7 @@ dependencies {
compileOnlyApi(libs.guava)
compileOnlyApi(libs.checkerQual)
}
java {
withJavadocJar()
}

View File

@ -22,7 +22,6 @@ tasks {
java {
javaTarget(8)
withSourcesJar()
withJavadocJar() // todo: do we need javadoc enabled for every module?
}
publishing {

View File

@ -11,3 +11,7 @@ dependencies {
api(projects.viaversionApi)
api(projects.viaversionApiLegacy)
}
java {
withJavadocJar()
}