Maven - How validate Sealights is properly defined in the POM.xml? (effective-pom)

Problem

When reporting a build to Sealights via Maven, you may need display the effective POM of the project to ensure what is the configuration used in runtime. 

Solution

The effective-pom goal is used to make visible the POM that results from the application of interpolation, inheritance and active profiles. It provides a useful way of removing the guesswork about just what ends up in the POM that Maven uses to build your project. It will iterate over all projects in the current build session, printing the effective POM for each.

You can execute this goal using the following command:

mvn help:effective-pom

Detailed official documentation is available here