Skip to content

Commit 02f33bc

Browse files
authored
Fix the output directory for the dokka Javadoc plugin to the folder "build/javadoc" with the project. (#546)
The current out dir would start with a folder named "property(org.gradle.api.file.Directory, fixed(class org.gradle.api.internal.file.DefaultFilePropertyFactory$FixedDirectory," within the project folder.
1 parent cd674c4 commit 02f33bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mockito-kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
}
3232

3333
dokkaHtml.configure {
34-
outputDirectory.set(file("${layout.buildDirectory}/javadoc"))
34+
outputDirectory.set(layout.buildDirectory.dir("javadoc"))
3535

3636
dokkaSourceSets {
3737
named("main") {

0 commit comments

Comments
 (0)