0 votes
in DevOps by
Unique Identifier for POM file

1 Answer

0 votes
by

POM.xml takes minimal coordinate attributes as

inputs for the project as groupId:artifactId:version (alias GAV).

POM stores the information such as the location of the source code and records any external dependencies. It describes what needs to be built as part of the project.

Sample POM file:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.fresco.play</groupId>
  <artifactId>first-mvn-project</artifactId>
  <version>1.0-SNAPSHOT</version>
</project>

Related questions

0 votes
asked Feb 20, 2020 in DevOps by MBarbieri
0 votes
asked Oct 29, 2021 in Maven - Coalescing Pipeline by DavidAnderson
0 votes
0 votes
asked Nov 12, 2019 in DevOps by Robindeniel
...