From 6fd61b5fa717862fa554fa4c4a076f56be3aaac1 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Wed, 6 Sep 2017 13:12:40 -0700 Subject: Don't warn on artifacts with same groupId Modify version-manifest to skip warnings on artifacts that are in the same groupId as the project being checked. Change-Id: I14afdfbba4b175e0158cdf91a1aac7d1dbc34da9 Issue-id: INT-124 Signed-off-by: Gary Wu --- .../versionmanifest/VersionCheckMojo.java | 27 ++++++++++++++-------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'version-manifest/src/main/java') diff --git a/version-manifest/src/main/java/org/onap/integration/versionmanifest/VersionCheckMojo.java b/version-manifest/src/main/java/org/onap/integration/versionmanifest/VersionCheckMojo.java index 325ca5811..5909c74f5 100644 --- a/version-manifest/src/main/java/org/onap/integration/versionmanifest/VersionCheckMojo.java +++ b/version-manifest/src/main/java/org/onap/integration/versionmanifest/VersionCheckMojo.java @@ -69,8 +69,8 @@ public class VersionCheckMojo extends AbstractMojo { throw new MojoExecutionException(e.getMessage()); } - log.info("Manifest version: " + gitProps.getProperty("git.remote.origin.url") + " " - + gitProps.getProperty("git.commit.id") + " " + gitProps.getProperty("git.build.time")); + log.info("Manifest version: " + gitProps.getProperty("git.build.time") + " " + + gitProps.getProperty("git.commit.id") + " " + gitProps.getProperty("git.remote.origin.url")); log.info(""); @@ -100,21 +100,28 @@ public class VersionCheckMojo extends AbstractMojo { final MavenProject parent = project.getParent(); if (parent != null) { log.debug("Parent: " + parent); - actualVersions.put(parent.getGroupId() + ":" + parent.getArtifactId(), parent.getVersion()); + // don't warn within the same groupId + if (!project.getGroupId().equals(parent.getGroupId())) { + actualVersions.put(parent.getGroupId() + ":" + parent.getArtifactId(), parent.getVersion()); + } } else { log.debug("No parent"); } for (Dependency dep : project.getDependencies()) { log.debug("Dependency: " + dep.toString()); - actualVersions.put(dep.getGroupId() + ":" + dep.getArtifactId(), dep.getVersion()); + // don't warn within the same groupId + if (!project.getGroupId().equals(dep.getGroupId())) { + actualVersions.put(dep.getGroupId() + ":" + dep.getArtifactId(), dep.getVersion()); + } } final Set mismatches = new TreeSet<>(); final Set missingArtifacts = new TreeSet<>(); - for (Entry actualVersion : actualVersions.entrySet()) { - String artifact = actualVersion.getKey(); + for (Entry actualVersionEntry : actualVersions.entrySet()) { + String artifact = actualVersionEntry.getKey(); + String actualVersion = actualVersionEntry.getValue(); String expectedVersion = expectedVersions.get(artifact); if (expectedVersion == null) { if (groupIdPrefixes.stream().anyMatch(prefix -> artifact.startsWith(prefix))) { @@ -144,17 +151,19 @@ public class VersionCheckMojo extends AbstractMojo { log.warn(String.format(format, artifact, actualVersion, expectedVersion)); } } + log.warn(""); } - log.info(""); - if (!missingArtifacts.isEmpty()) { + if (missingArtifacts.isEmpty()) { + log.debug("No artifacts found missing in the version manifest"); + } else { log.warn("The following dependencies are missing in the version manifest:"); for (String artifact : missingArtifacts) { String actualVersion = actualVersions.get(artifact); log.warn(String.format(format, artifact, actualVersion, "?")); } + log.warn(""); } - log.info(""); } } -- cgit 1.2.3-korg