Reputation:
Could somebody tells me, what are the differences between the command mvn archetype:generate and the commands mvn clean package or mvn clean install.
Thanks a lot! Maik
Upvotes: 0
Views: 70
Reputation:
archetype:generate
generates a brand new project from a templateclean package
clean and package the projectclean install
clean, package the project and install it into the local repo. (i.e. ~/.m2/repository
)For more info, see the documentation
Upvotes: 2