[
https://issues.jboss.org/browse/FORGE-2239?page=com.atlassian.jira.plugin...
]
George Gastaldi commented on FORGE-2239:
----------------------------------------
You must add a new archetype catalog using the {{archetype-add}} command:
eg: {{archetype-add --named default --url
http://mirrors.ibiblio.org/maven2/archetype-catalog.xml}}
You can also add programatically using the {{ArchetypeCatalogFactoryRegistry}}:
{code:java}
@Inject
private ArchetypeCatalogFactoryRegistry registry;
...
registry.addArchetypeCatalogFactory(new MyCompanyArchetypeCatalogFactory());
// You can also add the URL to the archetype-catalog.xml
registry.addArchetypeCatalogFactory("my-archetypes",new
URL("http://foo.com/archetype-catalog.xml"));
{code}
project-new - Cannot create a new project from-archetype-catalog
----------------------------------------------------------------
Key: FORGE-2239
URL:
https://issues.jboss.org/browse/FORGE-2239
Project: Forge
Issue Type: Bug
Environment: Using a vanilla Forge 2.14.0 from the command line
Reporter: Claus Ibsen
I try to create a new project, and select [7] to select from maven archetype catalog, but
the values for catalog and archetype cannot be entered. I am not sure how its supposed to
work.
Here is what I did
{code}
[forge-distribution-2.14.0.Final]$ project-new
***INFO*** Required inputs not satisfied, entering interactive mode
? Project name: muydemo
? Top level package [org.muydemo]:
? Version [1.0.0-SNAPSHOT]:
? Final name:
? Project location [/opt/forge-distribution-2.14.0.Final]:
[0] (x) war
[1] ( ) jar
[2] ( ) parent
[3] ( ) addon
[4] ( ) ear
[5] ( ) resource-jar
[6] ( ) from-archetype
[7] ( ) from-archetype-catalog
Press <ENTER> to confirm, or <CTRL>+C to cancel.
? Project type: [0-7] 7
[0] (x) Maven
Press <ENTER> to confirm, or <CTRL>+C to cancel.
? Build system: [0]
***ERROR*** Catalog must be specified.
***ERROR*** Archetype must be specified.
{code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)