Amira Manai
Amira Manai

Reputation: 2599

An already created maven project : where to find its artifactId and groupId

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

Answers (1)

sjakubowski
sjakubowski

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

Related Questions