Added output formats for Dokka

This commit is contained in:
Erik C. Thauvin 2023-11-06 15:35:23 -08:00
parent 84f14212f4
commit adc856b1e4
6 changed files with 74 additions and 18 deletions

View file

@ -42,6 +42,8 @@ To generate the Javadoc using [Dokka](https://github.com/Kotlin/dokka):
public void javadoc() throws ExitStatusException, IOException, InterruptedException {
new DokkaOperation()
.fromProject(this)
.outputDir(new File(buildDirectory(), "javadoc"))
.outputFormat(OutputFormat.JAVADOC)
.execute();
}
```