CPD Results
The following document contains the results of PMD's CPD 6.55.0.
Duplications
File |
Line |
org\apache\maven\report\projectinfo\PluginManagementReport.java |
235 |
org\apache\maven\report\projectinfo\PluginsReport.java |
213 |
- log.debug("Excluding plugin " + pluginArtifact.getId() + " from report");
- }
- }
- endTable();
-
- endSection();
- }
-
- // ----------------------------------------------------------------------
- // Private methods
- // ----------------------------------------------------------------------
-
- private String[] getPluginTableHeader() {
- // reused key...
- String groupId = getI18nString("dependency-management", "column.groupId");
- String artifactId = getI18nString("dependency-management", "column.artifactId");
- String version = getI18nString("dependency-management", "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() {
|