user777723
user777723

Reputation: 11

how to generate multi module archetype from generated one?

hey everyone, I have generated mono module maven project from a generated one by following that link : http://maven.apache.org/guides/mini/guide-creating-archetypes.html

so i want any one had any idea about the structure of the archetype i must had in my archetype to generate another multi-module archetype from it

Upvotes: 1

Views: 1088

Answers (1)

feniix
feniix

Reputation: 1628

You just create your skeleton or model multi module project and then run

mvn archetype:create-from-project

and in the target/generated-sources/archetype/

http://maven.apache.org/archetype/maven-archetype-plugin/examples/create-multi-module-project.html

Upvotes: 0

Related Questions