Place generated docs in docs/javadoc

This matches the default behaviour of the javadoc task. See:
https://docs.gradle.org/current/dsl/org.gradle.api.tasks.javadoc.Javadoc.html#org.gradle.api.tasks.javadoc.Javadoc:destinationDir
This commit is contained in:
Michael Bull 2018-02-28 03:15:24 +00:00
parent 667287f7d3
commit b812d938f9
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ dependencies {
dokka { dokka {
outputFormat = 'javadoc' outputFormat = 'javadoc'
outputDirectory = "$buildDir/docs" outputDirectory = "${docsDir}/javadoc"
} }
task javadocJar(type: Jar, dependsOn: dokka) { task javadocJar(type: Jar, dependsOn: dokka) {