Skip to content

Commit

Permalink
[MNGSITE-540] Use correct plugin for reporting
Browse files Browse the repository at this point in the history
With https://issues.apache.org/jira/browse/MPLUGIN-423 the reporting
mojo has been extracted in a dedicated plugin
Encapsulate in "reporting" profile
  • Loading branch information
kwin committed Aug 12, 2024
1 parent 943aeeb commit 830f762
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions maven-scm-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,18 @@
</plugins>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>reporting</id>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-report-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>

</project>

0 comments on commit 830f762

Please sign in to comment.