</execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>pl.project13.maven</groupId>
+        <artifactId>git-commit-id-plugin</artifactId>
+        <version>2.2.3</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>revision</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
+          <generateGitPropertiesFile>true</generateGitPropertiesFile>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>
 
 package org.onap.integration.versionmanifest;
 
 import java.io.IOException;
+import java.io.InputStream;
 import java.io.InputStreamReader;
 import java.net.MalformedURLException;
 import java.nio.charset.StandardCharsets;
 import java.util.List;
 import java.util.Map;
 import java.util.Map.Entry;
+import java.util.Properties;
 import java.util.Set;
 import java.util.TreeSet;
 
     public void execute() throws MojoExecutionException {
         final Log log = getLog();
 
-        log.info("Checking version manifest " + manifest);
+        final Properties gitProps = new Properties();
+        try (InputStream in = getClass().getResourceAsStream("/git.properties")) {
+            gitProps.load(in);
+        } catch (IOException e) {
+            log.error(e);
+            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("");
 
         final List<String> groupIdPrefixes = Arrays.asList("org.onap", "org.openecomp", "org.openo");
             String artifact = actualVersion.getKey();
             String expectedVersion = expectedVersions.get(artifact);
             if (expectedVersion == null) {
-                if (artifact.startsWith("org.onap") || artifact.startsWith("org.openecomp")) {
+                if (groupIdPrefixes.stream().anyMatch(prefix -> artifact.startsWith(prefix))) {
                     missingArtifacts.add(artifact);
                 }
             } else if (!expectedVersion.equals(actualVersion)) {