Skip to content

Commit

Permalink
[MCHANGES-461] Use new report names in project build
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Dec 30, 2024
1 parent e02b7cd commit 738baa6
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ under the License.
</dependencies>

<build>

<pluginManagement>
<plugins>
<plugin>
Expand All @@ -385,8 +386,25 @@ under the License.
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<!--
Use the current version to generate sample with the last features/fixes of the plugin.
It implies that the current version is already deployed to generate the site.
-->
<version>${project.version}</version>
<configuration>
<!-- For Announcement -->
<issueManagementSystems>
<issueManagementSystem>JIRA</issueManagementSystem>
</issueManagementSystems>
<onlyCurrentVersion>true</onlyCurrentVersion>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.eclipse.sisu</groupId>
Expand Down Expand Up @@ -478,16 +496,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<!--
Use the current version to generate sample with the last features/fixes of the plugin.
It implies that the current version is already deployed to generate the site.
-->
<version>${project.version}</version>
<configuration>
<!-- For Announcement -->
<issueManagementSystems>
<issueManagementSystem>JIRA</issueManagementSystem>
</issueManagementSystems>
<!-- For (sample) Changes-report -->
<issueLinkTemplatePerSystem>
<default>%URL%/%ISSUE%</default>
Expand All @@ -499,13 +508,12 @@ under the License.
<onlyCurrentVersion>true</onlyCurrentVersion>
<resolutionIds>Fixed</resolutionIds>
<sortColumnNames>Type,Key</sortColumnNames>
<useJql>true</useJql>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
<report>jira-report</report>
<report>changes</report>
<report>jira-changes</report>
</reports>
</reportSet>
</reportSets>
Expand Down

0 comments on commit 738baa6

Please sign in to comment.