Differences between maven archetype commands and maven command mvn package? -
could tells me, differences between command mvn archetype:generate , commands mvn clean package or mvn clean install.
thanks lot! maik
archetype:generate
generates brand new project templateclean package
clean , package projectclean install
clean, package project , install local repo. (i.e.~/.m2/repository
)
for more info, see the documentation
Comments
Post a Comment