You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by "Frank Trenkamp (JIRA)" <ji...@apache.org> on 2008/02/13 17:53:36 UTC

[jira] Created: (SM-1224) Maven archetype plugin unable to locate servicemix-* archetypes

Maven archetype plugin unable to locate servicemix-* archetypes
---------------------------------------------------------------

                 Key: SM-1224
                 URL: https://issues.apache.org/activemq/browse/SM-1224
             Project: ServiceMix
          Issue Type: Bug
          Components: archetypes
    Affects Versions: 3.2.1
         Environment: Sun JDK 1.5.0_10
Linux Debian/etch
ServiceMix 3.2.1
Maven 2.0.8
            Reporter: Frank Trenkamp
            Priority: Minor


When creating projects from archetypes, Maven's archetype plugin is unable to locate e.g. servicemix-service-unit or servicemix-service-assembly:

~~
user@debian:~/dev/esb/sm$ mvn archetype:create -DarchetypeArtifactId=servicemix-service-unit -DarchetypeGroupId=org.apache.servicemix.tooling -DartifactId=tutorial-file-su
[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO]   Tutorial
[INFO]   Tutorial :: SU
[INFO]   Tutorial :: SA
[INFO] Searching repository for plugin with prefix: 'archetype'.
[INFO] ------------------------------------------------------------------------
[INFO] Building Tutorial
[INFO]    task-segment: [archetype:create] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] Preparing archetype:create
[INFO] No goals needed for project - skipping
[INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[INFO] Setting property: velocimacro.messages.on => 'false'.
[INFO] Setting property: resource.loader => 'classpath'.
[INFO] Setting property: resource.manager.logwhenfound => 'false'.
[INFO] [archetype:create]
[WARNING] Specified archetype not found.
Choose archetype:
1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web application with Hibernate, Spring and JSF)
2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web application with Hibernate, Spring and Spring MVC)
3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web application with Hibernate, Spring and Struts 2)
4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a web application with Hibernate, Spring and Tapestry 4)
5: internal -> appfuse-core (AppFuse archetype for creating a jar application with Hibernate and Spring and XFire)
6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a modular application with Hibernate, Spring and JSF)
7: internal -> appfuse-modular-spring (AppFuse archetype for creating a modular application with Hibernate, Spring and Spring MVC)
8: internal -> appfuse-modular-struts (AppFuse archetype for creating a modular application with Hibernate, Spring and Struts 2)
9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a modular application with Hibernate, Spring and Tapestry 4)
10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java application)
11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development project using marmalade)
12: internal -> maven-archetype-mojo (A Maven Java plugin development project)
13: internal -> maven-archetype-portlet (A simple portlet application)
14: internal -> maven-archetype-profiles ()
15: internal -> maven-archetype-quickstart ()
16: internal -> maven-archetype-site-simple (A simple site generation project)
17: internal -> maven-archetype-site (A more complex site project)
18: internal -> maven-archetype-webapp (A simple Java web application)
19: internal -> struts2-archetype-starter (A starter Struts 2 application with Sitemesh, DWR, and Spring)
20: internal -> struts2-archetype-blank (A minimal Struts 2 application)
21: internal -> struts2-archetype-portlet (A minimal Struts 2 application that can be deployed as a portlet)
22: internal -> struts2-archetype-dbportlet (A starter Struts 2 portlet that demonstrates a simple CRUD interface with db backing)
23: internal -> struts2-archetype-plugin (A Struts 2 plugin)
24: internal -> shale-archetype-blank (A blank Shale web application with JSF)
25: internal -> maven-adf-archetype (Archetype to ease the burden of creating a new application based with ADF)
26: internal -> data-app (A new Databinder application with sources and resources.)
27: internal -> jini-service-archetype (Archetype for Jini service project creation)
28: internal -> softeu-archetype-seam (JSF+Facelets+Seam Archetype)
29: internal -> softeu-archetype-seam-simple (JSF+Facelets+Seam (no persistence) Archetype)
30: internal -> softeu-archetype-jsf (JSF+Facelets Archetype)
31: internal -> jpa-maven-archetype (JPA application)
32: internal -> spring-osgi-bundle-archetype (Spring-OSGi archetype)
33: internal -> confluence-plugin-archetype (Atlassian Confluence plugin archetype)
34: internal -> maven-archetype-har (Hibernate Archive)
35: internal -> maven-archetype-sar (JBoss Service Archive)
36: internal -> wicket-archetype-quickstart (A simple Apache Wicket project)
Choose a number:  (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36):
~~

Workaround: create a file "archetype-catalog.xml" with the following content in ~/.m2:

<?xml version="1.0" encoding="utf-8"?>
<archetype-catalog>
  <archetypes>
    <archetype>
      <groupId>org.apache.servicemix.tooling</groupId>
      <artifactId>servicemix-service-unit</artifactId>
      <version>3.2.1</version>
      <repository>http://repo1.maven.org/maven2</repository>
      <description>ServiceMix archetype for creating a simple SU</description>
    </archetype>
    <archetype>
      <groupId>org.apache.servicemix.tooling</groupId>
      <artifactId>servicemix-service-assembly</artifactId>
      <version>3.2.1</version>
      <repository>http://repo1.maven.org/maven2</repository>
      <description>ServiceMix archetype for creating a simple SA</description>
    </archetype>
  </archetypes>
</archetype-catalog>

Call maven with an additional parameter "-DarchetypeCatalog=local" to point to the local archetype configuration. Further archetypes can be added as needed.

See also: http://www.nabble.com/Archetype-servicemix-service-unit-not-found-for-tutorial-file-su-to15436123s12049.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (SM-1224) Maven archetype plugin unable to locate servicemix-* archetypes

Posted by "Gert Vanthienen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1224?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gert Vanthienen resolved SM-1224.
---------------------------------

    Fix Version/s: 3.2.2
                   3.3
       Resolution: Fixed

Resolving this:
- the workaround is no longer necessary with the latest maven archetype plugin
- a maven archetype catalog will be available soon at http://servicemix.apache.org/tooling/<servicemix_version>/archetype-catalog.xml

Scripts for publishing the archetype catalog (and the XSDs) can be found at http://svn.apache.org/repos/asf/servicemix/scripts/

> Maven archetype plugin unable to locate servicemix-* archetypes
> ---------------------------------------------------------------
>
>                 Key: SM-1224
>                 URL: https://issues.apache.org/activemq/browse/SM-1224
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: archetypes
>    Affects Versions: 3.2.1
>         Environment: Sun JDK 1.5.0_10
> Linux Debian/etch
> ServiceMix 3.2.1
> Maven 2.0.8
>            Reporter: Frank Trenkamp
>            Priority: Minor
>             Fix For: 3.2.2, 3.3
>
>
> When creating projects from archetypes, Maven's archetype plugin is unable to locate e.g. servicemix-service-unit or servicemix-service-assembly:
> ~~
> user@debian:~/dev/esb/sm$ mvn archetype:create -DarchetypeArtifactId=servicemix-service-unit -DarchetypeGroupId=org.apache.servicemix.tooling -DartifactId=tutorial-file-su
> [INFO] Scanning for projects...
> [INFO] Reactor build order:
> [INFO]   Tutorial
> [INFO]   Tutorial :: SU
> [INFO]   Tutorial :: SA
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO] ------------------------------------------------------------------------
> [INFO] Building Tutorial
> [INFO]    task-segment: [archetype:create] (aggregator-style)
> [INFO] ------------------------------------------------------------------------
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> [INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> [WARNING] Specified archetype not found.
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a web application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a modular application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal -> maven-archetype-quickstart ()
> 16: internal -> maven-archetype-site-simple (A simple site generation project)
> 17: internal -> maven-archetype-site (A more complex site project)
> 18: internal -> maven-archetype-webapp (A simple Java web application)
> 19: internal -> struts2-archetype-starter (A starter Struts 2 application with Sitemesh, DWR, and Spring)
> 20: internal -> struts2-archetype-blank (A minimal Struts 2 application)
> 21: internal -> struts2-archetype-portlet (A minimal Struts 2 application that can be deployed as a portlet)
> 22: internal -> struts2-archetype-dbportlet (A starter Struts 2 portlet that demonstrates a simple CRUD interface with db backing)
> 23: internal -> struts2-archetype-plugin (A Struts 2 plugin)
> 24: internal -> shale-archetype-blank (A blank Shale web application with JSF)
> 25: internal -> maven-adf-archetype (Archetype to ease the burden of creating a new application based with ADF)
> 26: internal -> data-app (A new Databinder application with sources and resources.)
> 27: internal -> jini-service-archetype (Archetype for Jini service project creation)
> 28: internal -> softeu-archetype-seam (JSF+Facelets+Seam Archetype)
> 29: internal -> softeu-archetype-seam-simple (JSF+Facelets+Seam (no persistence) Archetype)
> 30: internal -> softeu-archetype-jsf (JSF+Facelets Archetype)
> 31: internal -> jpa-maven-archetype (JPA application)
> 32: internal -> spring-osgi-bundle-archetype (Spring-OSGi archetype)
> 33: internal -> confluence-plugin-archetype (Atlassian Confluence plugin archetype)
> 34: internal -> maven-archetype-har (Hibernate Archive)
> 35: internal -> maven-archetype-sar (JBoss Service Archive)
> 36: internal -> wicket-archetype-quickstart (A simple Apache Wicket project)
> Choose a number:  (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36):
> ~~
> Workaround: create a file "archetype-catalog.xml" with the following content in ~/.m2:
> <?xml version="1.0" encoding="utf-8"?>
> <archetype-catalog>
>   <archetypes>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-unit</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SU</description>
>     </archetype>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-assembly</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SA</description>
>     </archetype>
>   </archetypes>
> </archetype-catalog>
> Call maven with an additional parameter "-DarchetypeCatalog=local" to point to the local archetype configuration. Further archetypes can be added as needed.
> See also: http://www.nabble.com/Archetype-servicemix-service-unit-not-found-for-tutorial-file-su-to15436123s12049.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (SM-1224) Maven archetype plugin unable to locate servicemix-* archetypes

Posted by "Gert Vanthienen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=41303#action_41303 ] 

Gert Vanthienen commented on SM-1224:
-------------------------------------

Wouldn't it be a good idea to create a publicly available archetype catalog for the ServiceMix Maven archetypes anyway?

> Maven archetype plugin unable to locate servicemix-* archetypes
> ---------------------------------------------------------------
>
>                 Key: SM-1224
>                 URL: https://issues.apache.org/activemq/browse/SM-1224
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: archetypes
>    Affects Versions: 3.2.1
>         Environment: Sun JDK 1.5.0_10
> Linux Debian/etch
> ServiceMix 3.2.1
> Maven 2.0.8
>            Reporter: Frank Trenkamp
>            Priority: Minor
>
> When creating projects from archetypes, Maven's archetype plugin is unable to locate e.g. servicemix-service-unit or servicemix-service-assembly:
> ~~
> user@debian:~/dev/esb/sm$ mvn archetype:create -DarchetypeArtifactId=servicemix-service-unit -DarchetypeGroupId=org.apache.servicemix.tooling -DartifactId=tutorial-file-su
> [INFO] Scanning for projects...
> [INFO] Reactor build order:
> [INFO]   Tutorial
> [INFO]   Tutorial :: SU
> [INFO]   Tutorial :: SA
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO] ------------------------------------------------------------------------
> [INFO] Building Tutorial
> [INFO]    task-segment: [archetype:create] (aggregator-style)
> [INFO] ------------------------------------------------------------------------
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> [INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> [WARNING] Specified archetype not found.
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a web application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a modular application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal -> maven-archetype-quickstart ()
> 16: internal -> maven-archetype-site-simple (A simple site generation project)
> 17: internal -> maven-archetype-site (A more complex site project)
> 18: internal -> maven-archetype-webapp (A simple Java web application)
> 19: internal -> struts2-archetype-starter (A starter Struts 2 application with Sitemesh, DWR, and Spring)
> 20: internal -> struts2-archetype-blank (A minimal Struts 2 application)
> 21: internal -> struts2-archetype-portlet (A minimal Struts 2 application that can be deployed as a portlet)
> 22: internal -> struts2-archetype-dbportlet (A starter Struts 2 portlet that demonstrates a simple CRUD interface with db backing)
> 23: internal -> struts2-archetype-plugin (A Struts 2 plugin)
> 24: internal -> shale-archetype-blank (A blank Shale web application with JSF)
> 25: internal -> maven-adf-archetype (Archetype to ease the burden of creating a new application based with ADF)
> 26: internal -> data-app (A new Databinder application with sources and resources.)
> 27: internal -> jini-service-archetype (Archetype for Jini service project creation)
> 28: internal -> softeu-archetype-seam (JSF+Facelets+Seam Archetype)
> 29: internal -> softeu-archetype-seam-simple (JSF+Facelets+Seam (no persistence) Archetype)
> 30: internal -> softeu-archetype-jsf (JSF+Facelets Archetype)
> 31: internal -> jpa-maven-archetype (JPA application)
> 32: internal -> spring-osgi-bundle-archetype (Spring-OSGi archetype)
> 33: internal -> confluence-plugin-archetype (Atlassian Confluence plugin archetype)
> 34: internal -> maven-archetype-har (Hibernate Archive)
> 35: internal -> maven-archetype-sar (JBoss Service Archive)
> 36: internal -> wicket-archetype-quickstart (A simple Apache Wicket project)
> Choose a number:  (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36):
> ~~
> Workaround: create a file "archetype-catalog.xml" with the following content in ~/.m2:
> <?xml version="1.0" encoding="utf-8"?>
> <archetype-catalog>
>   <archetypes>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-unit</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SU</description>
>     </archetype>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-assembly</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SA</description>
>     </archetype>
>   </archetypes>
> </archetype-catalog>
> Call maven with an additional parameter "-DarchetypeCatalog=local" to point to the local archetype configuration. Further archetypes can be added as needed.
> See also: http://www.nabble.com/Archetype-servicemix-service-unit-not-found-for-tutorial-file-su-to15436123s12049.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (SM-1224) Maven archetype plugin unable to locate servicemix-* archetypes

Posted by "Bruce Snyder (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=41304#action_41304 ] 

Bruce Snyder commented on SM-1224:
----------------------------------

Yeah, that's probably a good idea, Gert. Then we'll need to document its use on the wiki and make it available to people. 

> Maven archetype plugin unable to locate servicemix-* archetypes
> ---------------------------------------------------------------
>
>                 Key: SM-1224
>                 URL: https://issues.apache.org/activemq/browse/SM-1224
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: archetypes
>    Affects Versions: 3.2.1
>         Environment: Sun JDK 1.5.0_10
> Linux Debian/etch
> ServiceMix 3.2.1
> Maven 2.0.8
>            Reporter: Frank Trenkamp
>            Priority: Minor
>
> When creating projects from archetypes, Maven's archetype plugin is unable to locate e.g. servicemix-service-unit or servicemix-service-assembly:
> ~~
> user@debian:~/dev/esb/sm$ mvn archetype:create -DarchetypeArtifactId=servicemix-service-unit -DarchetypeGroupId=org.apache.servicemix.tooling -DartifactId=tutorial-file-su
> [INFO] Scanning for projects...
> [INFO] Reactor build order:
> [INFO]   Tutorial
> [INFO]   Tutorial :: SU
> [INFO]   Tutorial :: SA
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO] ------------------------------------------------------------------------
> [INFO] Building Tutorial
> [INFO]    task-segment: [archetype:create] (aggregator-style)
> [INFO] ------------------------------------------------------------------------
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> [INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> [WARNING] Specified archetype not found.
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a web application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a modular application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal -> maven-archetype-quickstart ()
> 16: internal -> maven-archetype-site-simple (A simple site generation project)
> 17: internal -> maven-archetype-site (A more complex site project)
> 18: internal -> maven-archetype-webapp (A simple Java web application)
> 19: internal -> struts2-archetype-starter (A starter Struts 2 application with Sitemesh, DWR, and Spring)
> 20: internal -> struts2-archetype-blank (A minimal Struts 2 application)
> 21: internal -> struts2-archetype-portlet (A minimal Struts 2 application that can be deployed as a portlet)
> 22: internal -> struts2-archetype-dbportlet (A starter Struts 2 portlet that demonstrates a simple CRUD interface with db backing)
> 23: internal -> struts2-archetype-plugin (A Struts 2 plugin)
> 24: internal -> shale-archetype-blank (A blank Shale web application with JSF)
> 25: internal -> maven-adf-archetype (Archetype to ease the burden of creating a new application based with ADF)
> 26: internal -> data-app (A new Databinder application with sources and resources.)
> 27: internal -> jini-service-archetype (Archetype for Jini service project creation)
> 28: internal -> softeu-archetype-seam (JSF+Facelets+Seam Archetype)
> 29: internal -> softeu-archetype-seam-simple (JSF+Facelets+Seam (no persistence) Archetype)
> 30: internal -> softeu-archetype-jsf (JSF+Facelets Archetype)
> 31: internal -> jpa-maven-archetype (JPA application)
> 32: internal -> spring-osgi-bundle-archetype (Spring-OSGi archetype)
> 33: internal -> confluence-plugin-archetype (Atlassian Confluence plugin archetype)
> 34: internal -> maven-archetype-har (Hibernate Archive)
> 35: internal -> maven-archetype-sar (JBoss Service Archive)
> 36: internal -> wicket-archetype-quickstart (A simple Apache Wicket project)
> Choose a number:  (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36):
> ~~
> Workaround: create a file "archetype-catalog.xml" with the following content in ~/.m2:
> <?xml version="1.0" encoding="utf-8"?>
> <archetype-catalog>
>   <archetypes>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-unit</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SU</description>
>     </archetype>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-assembly</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SA</description>
>     </archetype>
>   </archetypes>
> </archetype-catalog>
> Call maven with an additional parameter "-DarchetypeCatalog=local" to point to the local archetype configuration. Further archetypes can be added as needed.
> See also: http://www.nabble.com/Archetype-servicemix-service-unit-not-found-for-tutorial-file-su-to15436123s12049.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (SM-1224) Maven archetype plugin unable to locate servicemix-* archetypes

Posted by "Gert Vanthienen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=41517#action_41517 ] 

Gert Vanthienen commented on SM-1224:
-------------------------------------

Using the archetype:crawl goal allows you to generate the archetype-catalog.xml out of the information that is available in the local Maven repository.  Just the commit to trunk for now, as I'm still wondering how/where we will publish the catalog.  One option would be to publish it on an easy-to-remember URL on the website, but I suppose we could also add it to the public Maven repositories as well.  Any suggestions?

Adding         archetypes/servicemix-archetype-catalog
Adding         archetypes/servicemix-archetype-catalog/pom.xml
Transmitting file data .
Committed revision 633640.



> Maven archetype plugin unable to locate servicemix-* archetypes
> ---------------------------------------------------------------
>
>                 Key: SM-1224
>                 URL: https://issues.apache.org/activemq/browse/SM-1224
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: archetypes
>    Affects Versions: 3.2.1
>         Environment: Sun JDK 1.5.0_10
> Linux Debian/etch
> ServiceMix 3.2.1
> Maven 2.0.8
>            Reporter: Frank Trenkamp
>            Priority: Minor
>
> When creating projects from archetypes, Maven's archetype plugin is unable to locate e.g. servicemix-service-unit or servicemix-service-assembly:
> ~~
> user@debian:~/dev/esb/sm$ mvn archetype:create -DarchetypeArtifactId=servicemix-service-unit -DarchetypeGroupId=org.apache.servicemix.tooling -DartifactId=tutorial-file-su
> [INFO] Scanning for projects...
> [INFO] Reactor build order:
> [INFO]   Tutorial
> [INFO]   Tutorial :: SU
> [INFO]   Tutorial :: SA
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO] ------------------------------------------------------------------------
> [INFO] Building Tutorial
> [INFO]    task-segment: [archetype:create] (aggregator-style)
> [INFO] ------------------------------------------------------------------------
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> [INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> [WARNING] Specified archetype not found.
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a web application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a modular application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal -> maven-archetype-quickstart ()
> 16: internal -> maven-archetype-site-simple (A simple site generation project)
> 17: internal -> maven-archetype-site (A more complex site project)
> 18: internal -> maven-archetype-webapp (A simple Java web application)
> 19: internal -> struts2-archetype-starter (A starter Struts 2 application with Sitemesh, DWR, and Spring)
> 20: internal -> struts2-archetype-blank (A minimal Struts 2 application)
> 21: internal -> struts2-archetype-portlet (A minimal Struts 2 application that can be deployed as a portlet)
> 22: internal -> struts2-archetype-dbportlet (A starter Struts 2 portlet that demonstrates a simple CRUD interface with db backing)
> 23: internal -> struts2-archetype-plugin (A Struts 2 plugin)
> 24: internal -> shale-archetype-blank (A blank Shale web application with JSF)
> 25: internal -> maven-adf-archetype (Archetype to ease the burden of creating a new application based with ADF)
> 26: internal -> data-app (A new Databinder application with sources and resources.)
> 27: internal -> jini-service-archetype (Archetype for Jini service project creation)
> 28: internal -> softeu-archetype-seam (JSF+Facelets+Seam Archetype)
> 29: internal -> softeu-archetype-seam-simple (JSF+Facelets+Seam (no persistence) Archetype)
> 30: internal -> softeu-archetype-jsf (JSF+Facelets Archetype)
> 31: internal -> jpa-maven-archetype (JPA application)
> 32: internal -> spring-osgi-bundle-archetype (Spring-OSGi archetype)
> 33: internal -> confluence-plugin-archetype (Atlassian Confluence plugin archetype)
> 34: internal -> maven-archetype-har (Hibernate Archive)
> 35: internal -> maven-archetype-sar (JBoss Service Archive)
> 36: internal -> wicket-archetype-quickstart (A simple Apache Wicket project)
> Choose a number:  (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36):
> ~~
> Workaround: create a file "archetype-catalog.xml" with the following content in ~/.m2:
> <?xml version="1.0" encoding="utf-8"?>
> <archetype-catalog>
>   <archetypes>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-unit</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SU</description>
>     </archetype>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-assembly</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SA</description>
>     </archetype>
>   </archetypes>
> </archetype-catalog>
> Call maven with an additional parameter "-DarchetypeCatalog=local" to point to the local archetype configuration. Further archetypes can be added as needed.
> See also: http://www.nabble.com/Archetype-servicemix-service-unit-not-found-for-tutorial-file-su-to15436123s12049.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (SM-1224) Maven archetype plugin unable to locate servicemix-* archetypes

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1224?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=41298#action_41298 ] 

Daniel Kulp commented on SM-1224:
---------------------------------


This is a bug in the new archetype plugin in maven that was deployed last weekend.  See discussion at:

http://www.nabble.com/New-archetype-plugin-issues-questions....-to15435079s177.html

A new version should hopefully be coming shortly.


For a workaround, do:

mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create  .......

to lock down to the previous, working, version.



> Maven archetype plugin unable to locate servicemix-* archetypes
> ---------------------------------------------------------------
>
>                 Key: SM-1224
>                 URL: https://issues.apache.org/activemq/browse/SM-1224
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: archetypes
>    Affects Versions: 3.2.1
>         Environment: Sun JDK 1.5.0_10
> Linux Debian/etch
> ServiceMix 3.2.1
> Maven 2.0.8
>            Reporter: Frank Trenkamp
>            Priority: Minor
>
> When creating projects from archetypes, Maven's archetype plugin is unable to locate e.g. servicemix-service-unit or servicemix-service-assembly:
> ~~
> user@debian:~/dev/esb/sm$ mvn archetype:create -DarchetypeArtifactId=servicemix-service-unit -DarchetypeGroupId=org.apache.servicemix.tooling -DartifactId=tutorial-file-su
> [INFO] Scanning for projects...
> [INFO] Reactor build order:
> [INFO]   Tutorial
> [INFO]   Tutorial :: SU
> [INFO]   Tutorial :: SA
> [INFO] Searching repository for plugin with prefix: 'archetype'.
> [INFO] ------------------------------------------------------------------------
> [INFO] Building Tutorial
> [INFO]    task-segment: [archetype:create] (aggregator-style)
> [INFO] ------------------------------------------------------------------------
> [INFO] Preparing archetype:create
> [INFO] No goals needed for project - skipping
> [INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
> [INFO] Setting property: velocimacro.messages.on => 'false'.
> [INFO] Setting property: resource.loader => 'classpath'.
> [INFO] Setting property: resource.manager.logwhenfound => 'false'.
> [INFO] [archetype:create]
> [WARNING] Specified archetype not found.
> Choose archetype:
> 1: internal -> appfuse-basic-jsf (AppFuse archetype for creating a web application with Hibernate, Spring and JSF)
> 2: internal -> appfuse-basic-spring (AppFuse archetype for creating a web application with Hibernate, Spring and Spring MVC)
> 3: internal -> appfuse-basic-struts (AppFuse archetype for creating a web application with Hibernate, Spring and Struts 2)
> 4: internal -> appfuse-basic-tapestry (AppFuse archetype for creating a web application with Hibernate, Spring and Tapestry 4)
> 5: internal -> appfuse-core (AppFuse archetype for creating a jar application with Hibernate and Spring and XFire)
> 6: internal -> appfuse-modular-jsf (AppFuse archetype for creating a modular application with Hibernate, Spring and JSF)
> 7: internal -> appfuse-modular-spring (AppFuse archetype for creating a modular application with Hibernate, Spring and Spring MVC)
> 8: internal -> appfuse-modular-struts (AppFuse archetype for creating a modular application with Hibernate, Spring and Struts 2)
> 9: internal -> appfuse-modular-tapestry (AppFuse archetype for creating a modular application with Hibernate, Spring and Tapestry 4)
> 10: internal -> maven-archetype-j2ee-simple (A simple J2EE Java application)
> 11: internal -> maven-archetype-marmalade-mojo (A Maven plugin development project using marmalade)
> 12: internal -> maven-archetype-mojo (A Maven Java plugin development project)
> 13: internal -> maven-archetype-portlet (A simple portlet application)
> 14: internal -> maven-archetype-profiles ()
> 15: internal -> maven-archetype-quickstart ()
> 16: internal -> maven-archetype-site-simple (A simple site generation project)
> 17: internal -> maven-archetype-site (A more complex site project)
> 18: internal -> maven-archetype-webapp (A simple Java web application)
> 19: internal -> struts2-archetype-starter (A starter Struts 2 application with Sitemesh, DWR, and Spring)
> 20: internal -> struts2-archetype-blank (A minimal Struts 2 application)
> 21: internal -> struts2-archetype-portlet (A minimal Struts 2 application that can be deployed as a portlet)
> 22: internal -> struts2-archetype-dbportlet (A starter Struts 2 portlet that demonstrates a simple CRUD interface with db backing)
> 23: internal -> struts2-archetype-plugin (A Struts 2 plugin)
> 24: internal -> shale-archetype-blank (A blank Shale web application with JSF)
> 25: internal -> maven-adf-archetype (Archetype to ease the burden of creating a new application based with ADF)
> 26: internal -> data-app (A new Databinder application with sources and resources.)
> 27: internal -> jini-service-archetype (Archetype for Jini service project creation)
> 28: internal -> softeu-archetype-seam (JSF+Facelets+Seam Archetype)
> 29: internal -> softeu-archetype-seam-simple (JSF+Facelets+Seam (no persistence) Archetype)
> 30: internal -> softeu-archetype-jsf (JSF+Facelets Archetype)
> 31: internal -> jpa-maven-archetype (JPA application)
> 32: internal -> spring-osgi-bundle-archetype (Spring-OSGi archetype)
> 33: internal -> confluence-plugin-archetype (Atlassian Confluence plugin archetype)
> 34: internal -> maven-archetype-har (Hibernate Archive)
> 35: internal -> maven-archetype-sar (JBoss Service Archive)
> 36: internal -> wicket-archetype-quickstart (A simple Apache Wicket project)
> Choose a number:  (1/2/3/4/5/6/7/8/9/10/11/12/13/14/15/16/17/18/19/20/21/22/23/24/25/26/27/28/29/30/31/32/33/34/35/36):
> ~~
> Workaround: create a file "archetype-catalog.xml" with the following content in ~/.m2:
> <?xml version="1.0" encoding="utf-8"?>
> <archetype-catalog>
>   <archetypes>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-unit</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SU</description>
>     </archetype>
>     <archetype>
>       <groupId>org.apache.servicemix.tooling</groupId>
>       <artifactId>servicemix-service-assembly</artifactId>
>       <version>3.2.1</version>
>       <repository>http://repo1.maven.org/maven2</repository>
>       <description>ServiceMix archetype for creating a simple SA</description>
>     </archetype>
>   </archetypes>
> </archetype-catalog>
> Call maven with an additional parameter "-DarchetypeCatalog=local" to point to the local archetype configuration. Further archetypes can be added as needed.
> See also: http://www.nabble.com/Archetype-servicemix-service-unit-not-found-for-tutorial-file-su-to15436123s12049.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.