documentation home

FAQ  No docs generated after upgrading plugin


Problem

After the plugin version is upgraded, Miredot no longer generates html documentation.

Solution

This is probably caused by a missing or empty output section in the Miredot configuration, so you simply need to add it.

For maven:

    <plugin>
        <groupId>com.qmino</groupId>
        <artifactId>miredot-plugin</artifactId>
        ...
        <configuration>
            ...
            <output>
                <html></html>
            </output>
        </configuration>
    </plugin>

For gradle:

miredot {
    ...
    output {
        formats {
            'html' {}
        }
    }
}