This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-scm.git
The following commit(s) were added to refs/heads/master by this push:
new 830f76221 [MNGSITE-540] Use correct plugin for reporting
830f76221 is described below
commit 830f76221ec2945df7c69cf318d51663d0dbdd8a
Author: Konrad Windszus <[email protected]>
AuthorDate: Sun Aug 11 10:42:48 2024 +0200
[MNGSITE-540] Use correct plugin for reporting
With https://issues.apache.org/jira/browse/MPLUGIN-423 the reporting
mojo has been extracted in a dedicated plugin
Encapsulate in "reporting" profile
---
maven-scm-plugin/pom.xml | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/maven-scm-plugin/pom.xml b/maven-scm-plugin/pom.xml
index 24cc4dac8..ada480905 100644
--- a/maven-scm-plugin/pom.xml
+++ b/maven-scm-plugin/pom.xml
@@ -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>