raja anand
raja anand

Reputation: 11

How to find the archetype of maven project in eclipse?

I am planning to create a new project but I want to understand the archetype of existing maven project. So that I can follow the same archetype while creating a new one. i have tried many things one of them was web.xml but still not working for me. I would appreciate your help. Thanks in advance.

Upvotes: 0

Views: 1837

Answers (2)

J Fabian Meier
J Fabian Meier

Reputation: 35805

For a Maven project, there is no general way to find out from which archetype it was created.

Upvotes: 1

Hemant
Hemant

Reputation: 1438

Use mvn archetype:create-from-project

Reference: http://maven.apache.org/archetype/maven-archetype-plugin/advanced-usage.html

Upvotes: 0

Related Questions