documentation home

Title

The title of the documentation is by default generated as name - version where name and version are the corresponding properties from the project's pom.xml file (Maven) or build.gradle file (Gradle). You can also override the title in the format-specific sections.

You can modify this as follows:

Maven
<configuration>
    <output>
        <title>My Cool Project version ${project.version}
    </output>
</configuration>
Gradle
miredot {
    output {
        title = 'My Cool Project, version ' + version
    }
}

Note that you can use Maven/Gradle properties to compose your title.