Project Object Model is the basic unit of Maven and defines the project structure, dependencies, etc.
The following are very minimal to create a POM:
project root
modelVersion – should be set to 4.0.0
groupId – the ID of the project's group
artifactId – the ID of the artifact (project)
versi...