Reputation: 2599
I have a ready maven project and i want to know its artifactId and groupId Have you any idea how to do it?
Thank you in advace
Upvotes: 0
Views: 2845
Reputation: 2943
It is in the pom.xml in the root directory of your project, near the top of the file:
<modelVersion>4.0.0</modelVersion>
<groupId>HERE</groupId>
<artifactId>AND HERE</artifactId>
<packaging>war</packaging>
<version>1.0</version>
Upvotes: 1