mirror of https://github.com/apache/maven.git
Fix copyResources calls
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@169531 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f9360a13d9
commit
748d500ab3
|
@ -100,7 +100,7 @@ public class CheckstyleReportMojo
|
|||
report.getOutputName() + ".html",
|
||||
outputDirectory, getSiteDescriptor(), flavour );
|
||||
|
||||
siteRenderer.copyResources( siteDirectory, outputDirectory, flavour );
|
||||
siteRenderer.copyResources( outputDirectory, flavour, siteDirectory );
|
||||
|
||||
report.generate( sink );
|
||||
}
|
||||
|
|
|
@ -101,7 +101,7 @@ public class PmdReportMojo
|
|||
|
||||
report.generate( sink );
|
||||
|
||||
siteRenderer.copyResources( siteDirectory, outputDirectory, flavour );
|
||||
siteRenderer.copyResources( outputDirectory, flavour, siteDirectory );
|
||||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
|
|
|
@ -112,7 +112,7 @@ public class ProjectReportsMojo
|
|||
|
||||
mailingListsReport.generate( sink );
|
||||
|
||||
siteRenderer.copyResources( siteDirectory, outputDirectory, flavour );
|
||||
siteRenderer.copyResources( outputDirectory, flavour, siteDirectory );
|
||||
}
|
||||
catch ( Exception e )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue