Reputation: 11
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
Reputation: 35805
For a Maven project, there is no general way to find out from which archetype it was created.
Upvotes: 1
Reputation: 1438
Use mvn archetype:create-from-project
Reference: http://maven.apache.org/archetype/maven-archetype-plugin/advanced-usage.html
Upvotes: 0