added logging
This commit is contained in:
@@ -306,9 +306,12 @@ public class PurgeRepoMojo extends AbstractMojo {
|
||||
String version = matcher.group(2);
|
||||
String includeName = artifactId + "-" + version;
|
||||
String excludeName = artifactId + "-" + version + ".pom";
|
||||
getLog().debug("artifact-version: " + includeName);
|
||||
|
||||
if (file.getFileName().toString().startsWith(includeName) &&
|
||||
!file.getFileName().toString().startsWith(excludeName)) {
|
||||
try {
|
||||
getLog().info("Deleting artifact: " + file);
|
||||
Files.delete(file);
|
||||
} catch (IOException ie) {
|
||||
getLog().debug(ie);
|
||||
|
Reference in New Issue
Block a user