mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Configure Dackka to generate javadoc for protected methods
#minor-release PiperOrigin-RevId: 487497923
This commit is contained in:
parent
13ee34facc
commit
7cb2e11303
1 changed files with 6 additions and 1 deletions
|
|
@ -115,11 +115,16 @@ class CombinedJavadocPlugin implements Plugin<Project> {
|
||||||
def sourcesString = project.files(sources.flatten())
|
def sourcesString = project.files(sources.flatten())
|
||||||
.filter({ f -> project.file(f).exists() }).join(";")
|
.filter({ f -> project.file(f).exists() }).join(";")
|
||||||
def dependenciesString = project.files(dependencies).asPath.replace(':', ';')
|
def dependenciesString = project.files(dependencies).asPath.replace(':', ';')
|
||||||
|
def sourceSet = [
|
||||||
|
"-src", sourcesString,
|
||||||
|
"-classpath", dependenciesString,
|
||||||
|
"-documentedVisibilities", "PUBLIC;PROTECTED"
|
||||||
|
].join(" ")
|
||||||
args("-moduleName", "",
|
args("-moduleName", "",
|
||||||
"-outputDir", "$dackkaOutputDir",
|
"-outputDir", "$dackkaOutputDir",
|
||||||
"-globalLinks", "$globalLinksString",
|
"-globalLinks", "$globalLinksString",
|
||||||
"-loggingLevel", "WARN",
|
"-loggingLevel", "WARN",
|
||||||
"-sourceSet", "-src $sourcesString -classpath $dependenciesString",
|
"-sourceSet", "$sourceSet",
|
||||||
"-offlineMode")
|
"-offlineMode")
|
||||||
environment("DEVSITE_TENANT", "androidx/media3")
|
environment("DEVSITE_TENANT", "androidx/media3")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue