Maven / Maven Interview questions II
Difference between POM and Effective POM in Maven.
All Maven POMs inherit defaults from the Super POM.
For a basic Java project, we just need the Simplest POM, that defines a groupId, artifactId, and version, the three required coordinates for every project. you don't have to customize else as the other configurations will be inherited form the Super POM.
The Effective POM refers the merge between the Super POM and the POM from The Simplest POM.
More Related questions...