The following document contains the results of PMD's CPD 5.0.5.
| File | Line |
|---|---|
| org\apache\maven\plugin\checkstyle\AbstractCheckstyleReport.java | 510 |
| org\apache\maven\plugin\checkstyle\CheckstyleViolationCheckMojo.java | 799 |
@SuppressWarnings( "unchecked" )
private List<Artifact> collectArtifacts( String hint )
{
if ( plugin == null || plugin.getGroupId() == null )
{
// Maven 2.x workaround
plugin = mojoExecution.getMojoDescriptor().getPluginDescriptor();
}
List<Artifact> artifacts = new ArrayList<>();
PluginManagement pluginManagement = project.getBuild().getPluginManagement();
if ( pluginManagement != null )
{
artifacts.addAll( getCheckstylePluginDependenciesAsArtifacts( pluginManagement.getPluginsAsMap(), hint ) );
}
artifacts.addAll( getCheckstylePluginDependenciesAsArtifacts( project.getBuild().getPluginsAsMap(), hint ) );
return artifacts;
}
private List<Artifact> getCheckstylePluginDependenciesAsArtifacts( Map<String, Plugin> plugins, String hint )
{
List<Artifact> artifacts = new ArrayList<>();
Plugin checkstylePlugin = plugins.get( plugin.getGroupId() + ":" + plugin.getArtifactId() );
if ( checkstylePlugin != null )
{
for ( Dependency dep : checkstylePlugin.getDependencies() )
{
// @todo if we can filter on hints, it should be done here...
String depKey = dep.getGroupId() + ":" + dep.getArtifactId();
artifacts.add( (Artifact) plugin.getArtifactMap().get( depKey ) );
}
}
return artifacts;
} | |