Fork me on GitHub

Plugin Documentation

Goals available for this plugin:

Goal Description
paprika:changelog Paprika changelog Mojo. Extract pertinent commits related to a module and its dependencies and call a template engine to generate a changelo report. This mojo can be configured with:
  • from
  • to
  • output
  • template
paprika:release Paprika release Mojo. Can be helpful to releasing modules: it displays or executes the Git commands for tagging the currently modified modules. This mojo can be configured with system properties:
  • lastModification
  • annotated
  • signed
  • message
  • subModules
  • increment
  • skipTagged
  • output
  • exec

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 3.6.3
JDK 11

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>io.github.atos-digital-id</groupId>
          <artifactId>paprika-maven-plugin</artifactId>
          <version>0.9.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>io.github.atos-digital-id</groupId>
        <artifactId>paprika-maven-plugin</artifactId>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"