Reputation: 59116
When trying to generate a Maven project from an archetype (using mvn archetype:generate
), the command returns a lots of archetypes.
Is there a way to filter archetypes given a word (contained in groupId or artifactId)?
I know you can actually create a project with a specific archetype, with arguments like -DgroupID=org.domain -DartifactId=sample
, but it's not what I'm looking for.
Upvotes: 6
Views: 9051
Reputation: 59116
Ok. A bug as been filed and should be resolved in Maven archetype plugin version 2.1.
Edit:
Bug is solved in maven-archetype-plugin version 2.1. Documentation is ready.
mvn archetype:generate -Dfilter=org.apache:struts
For a groupId
containing org.apache
AND an artifactId
containing struts
Upvotes: 15