0 Replies Latest reply on Dec 7, 2006 3:46 PM by jactor

    Deploy a service archive using maven

      I am deploying a service archive (SAR) with ant (building the archive as a jar file and using the extention sar instead of jar) without troubles, but it is difficult when I now want to package the archive with maven 2.

      In the pom.xml:

      ...
       <packaging>sar</packaging>
      ...


      The console:
      ...
      [ERROR] BUILD ERROR
      [INFO] ------------------------------------------------------------------------
      [INFO] Cannot find lifecycle mapping for packaging: 'sar'.
      Component descriptor cannot be found in the component repository: org.apache.maven.lifecycle.mapping.LifecycleMappingsar
      ...



      The service archive is mentioned in the 'Better Builds With Maven (The How-to Guide for Maven 2.0)' but it is unknown to maven when building. Can anyone help me building a service archive with maven?