Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0-alpha-2
-
None
Description
It could be good if by default you can choose the following archetypes to the default or internal archetype-catalog.xml:
It's as simple as add the <archetype> nodes to the file on archetype-common project.
<?xml version="1.0" encoding="UTF-8"?>
<archetype-catalog>
<archetypes>
<archetype>
<groupId>org.apache.myfaces.buildtools</groupId>
<artifactId>myfaces-archetype-helloworld</artifactId>
<version>1.0.0</version>
<repository>http://repo1.maven.org/maven2</repository>
<description>Simple Web application using Apache Myfaces</description>
</archetype>
<archetype>
<groupId>org.apache.myfaces.buildtools</groupId>
<artifactId>myfaces-archetype-helloworld-facelets</artifactId>
<version>1.0.0</version>
<repository>http://repo1.maven.org/maven2</repository>
<description>A simple archetype using MyFaces and facelets</description>
</archetype>
<archetype>
<groupId>org.apache.myfaces.buildtools</groupId>
<artifactId>myfaces-archetype-trinidad</artifactId>
<version>1.0</version>
<repository>http://repo1.maven.org/maven2</repository>
<description>A simple archetype using Myfaces and Trinidad</description>
</archetype>
<archetype>
<groupId>org.apache.myfaces.buildtools</groupId>
<artifactId>myfaces-archetype-jsfcomponents</artifactId>
<version>1.0</version>
<repository>http://repo1.maven.org/maven2</repository>
<description>A simple archetype for create custom JSF components using MyFaces</description>
</archetype>
</archetypes>
</archetype-catalog>