CPD Results
The following document contains the results of PMD's CPD 5.0.5.
Duplications
File |
Line |
org/apache/maven/report/projectinfo/PluginManagementReport.java |
234 |
org/apache/maven/report/projectinfo/PluginsReport.java |
233 |
log.info( "Could not build project for: " + plugin.getArtifactId() + ":" + e.getMessage(), e );
tableRow( getPluginRow( plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion(), null ) );
}
}
endTable();
endSection();
}
// ----------------------------------------------------------------------
// Private methods
// ----------------------------------------------------------------------
private String[] getPluginTableHeader()
{
// reused key...
String groupId = getI18nString( "dependencyManagement", "column.groupId" );
String artifactId = getI18nString( "dependencyManagement", "column.artifactId" );
String version = getI18nString( "dependencyManagement", "column.version" );
return new String[] { groupId, artifactId, version };
}
private String[] getPluginRow( String groupId, String artifactId, String version, String link )
{
artifactId = ProjectInfoReportUtils.getArtifactIdCell( artifactId, link );
return new String[] { groupId, artifactId, version };
}
private Comparator<Plugin> getPluginComparator() |
File |
Line |
org/apache/maven/report/projectinfo/PluginManagementReport.java |
216 |
org/apache/maven/report/projectinfo/PluginsReport.java |
214 |
Artifact pluginArtifact = artifactFactory.createParentArtifact( plugin.getGroupId(), plugin
.getArtifactId(), versionRange.toString() );
@SuppressWarnings( "unchecked" )
List<ArtifactRepository> artifactRepositories = project.getPluginArtifactRepositories();
if ( artifactRepositories == null )
{
artifactRepositories = new ArrayList<ArtifactRepository>();
}
try
{
MavenProject pluginProject = mavenProjectBuilder.buildFromRepository( pluginArtifact,
artifactRepositories,
localRepository );
tableRow( getPluginRow( pluginProject.getGroupId(), pluginProject.getArtifactId(), pluginProject
.getVersion(), pluginProject.getUrl() ) );
}
catch ( ProjectBuildingException e )
{
log.info( "Could not build project for: " + plugin.getArtifactId() + ":" + e.getMessage(), e ); |