-
Notifications
You must be signed in to change notification settings - Fork 443
Closed
Labels
bugregressionAn issue/bug that appeared after recent changesAn issue/bug that appeared after recent changesrunner: CLIAn issue/PR related to Dokka's CLI runnerAn issue/PR related to Dokka's CLI runnerrunner: Maven pluginAn issue/PR related to Dokka's Maven pluginAn issue/PR related to Dokka's Maven plugin
Description
Configure the Dokka Maven plugin with custom module name:
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.8.10</version>
<!-- <version>1.7.20</version>-->
<executions>
<execution>
<phase>pre-site</phase>
<goals>
<goal>dokka</goal>
</goals>
</execution>
</executions>
<configuration>
<moduleName>Dokka Maven Project</moduleName>
</configuration>
</plugin>
As a result, rendered documentation will filter out all sources:
The issue appeared in 1.8.10
. For 1.7.20
, it works fine. Also, it does not reproduce for Gradle runner.
Metadata
Metadata
Assignees
Labels
bugregressionAn issue/bug that appeared after recent changesAn issue/bug that appeared after recent changesrunner: CLIAn issue/PR related to Dokka's CLI runnerAn issue/PR related to Dokka's CLI runnerrunner: Maven pluginAn issue/PR related to Dokka's Maven pluginAn issue/PR related to Dokka's Maven plugin