1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Fixes the compatibility with the version of Maven Reporting API in Debian
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java
+++ b/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/AbstractSurefireReportMojo.java
@@ -139,7 +139,7 @@
}
@Override
- public boolean canGenerateReport()
+ public boolean canGenerateReport() throws MavenReportException
{
return hasReportDirectories() && super.canGenerateReport();
}
|