Ok, I undertsand.

Looks like this archetype is quite difficult as I think before.
You need to add JBoss Snapshot repo to you maven settings.xml.

Try to change previously added <profiles> section to listed below and try again with command.

<profiles>
<profile>
<id>jboss-repo</id>
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/maven2</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>
</profile>

<profile>
<id>jboss-repo-snapshots</id>
<repositories>
<repository>
<id>jboss-snapshots</id>
<url>http://snapshots.jboss.org/maven2/</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jboss-repo</activeProfile>
<activeProfile>jboss-repo-snapshots</activeProfile>
</activeProfiles>




23.04.2010 16:11, pankjajain15 пишет:

i used same command as u told me

the command is as follow
C:\sample2>mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk
-Darchety
peArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.2.GA
-DgroupId=org
.docs.richfaces -DartifactId=jsf-app
-DarchetypeRepository=http://repository.jbo
ss.org/maven2


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to