Filter archetypes in Maven command line with archetype:generate

Brian Clozel picture Brian Clozel · Jul 13, 2011 · Viewed 7.7k times · Source

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.

Answer

Brian Clozel picture Brian Clozel · Jul 13, 2011

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