The following document contains the results of PMD's CPD 4.2.2.
File | Line |
---|---|
org/apache/maven/report/projectinfo/PluginManagementReport.java | 211 |
org/apache/maven/report/projectinfo/PluginsReport.java | 235 |
tableRow( getPluginRow( artifact.getGroupId(), artifact.getArtifactId(), artifact.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 getArtifactComparator() |