Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 963 Bytes

File metadata and controls

39 lines (30 loc) · 963 Bytes

Maven plugin

Heylogs Maven plugin allows the tool to be part of a Maven build workflow but can also be used as a standalone tool.

Examples

Check the changelog automatically on every build:

<plugin>
    <groupId>com.github.nbbrd.heylogs</groupId>
    <artifactId>heylogs-maven-plugin</artifactId>
    <executions>
        <execution>
            <goals>
                <goal>check</goal>
            </goals>
            <inherited>false</inherited>
        </execution>
    </executions>
    <configuration>
        <versioning>semver</versioning>
    </configuration>
</plugin>

Tip

Versioning, tagging and forge should be configured globally in the plugin configuration section instead of the execution configuration section to avoid repetition and basic mistakes.

This check can also be performed manually by calling it directly from the command-line:

mvn heylogs:check

← Back to README