The following document contains the results of PMD's CPD 3.9.
| File | Line |
|---|---|
| net/sf/jour/maven/GenerateMojo.java | 135 |
| net/sf/jour/maven/SignatureVerifyMojo.java | 134 |
config.apiLevel = APIFilter.getAPILevel(level);
StringBuffer supportingJars = new StringBuffer();
List dependancy = this.mavenProject.getTestArtifacts();
for (Iterator i = dependancy.iterator(); i.hasNext();) {
Artifact artifact = (Artifact) i.next();
File file = InstrumentationMojo.getClasspathElement(artifact, mavenProject);
log.debug("dependancy:" + file.toString());
if (supportingJars.length() < 0) {
supportingJars.append(File.pathSeparatorChar);
}
supportingJars.append(file.toString());
} | |