File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ val implCls: Configuration by configurations.creating {
6161val javadocs by tasks.registering(Javadoc ::class ) {
6262 title = " ${project.ext.get(" plugin_display_name" )} ${project.ext.get(" plugin_version" )} API"
6363 classpath + = implCls.asFileTree.filter {it.extension == " jar" }
64- setDestinationDir(project.file(" /build/outputs/ javadoc" ))
64+ setDestinationDir(project.file(" /build/javadoc" ))
6565 source = sourceSets.main.get().allJava
6666 // options.links = "https://docs.oracle.com/en/java/javase/17/docs/api/"
6767 // options.linkSource = true
@@ -71,7 +71,7 @@ val javadocs by tasks.registering(Javadoc::class) {
7171
7272val javadocJar by tasks.registering(Jar ::class ) {
7373 archiveClassifier.set(" javadoc" )
74- from(project.file(" /build/outputs/ javadoc" ))
74+ from(project.file(" /build/javadoc" ))
7575 dependsOn(javadocs)
7676}
7777
You can’t perform that action at this time.
0 commit comments