You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Karl Heinz Marbaise (JIRA)" <ji...@apache.org> on 2015/12/25 10:27:49 UTC

[jira] [Created] (MEJB-92) Make separate classifier for client and main aritfact

Karl Heinz Marbaise created MEJB-92:
---------------------------------------

             Summary: Make separate classifier for client and main aritfact
                 Key: MEJB-92
                 URL: https://issues.apache.org/jira/browse/MEJB-92
             Project: Maven EJB Plugin
          Issue Type: Improvement
    Affects Versions: 3.0.0
            Reporter: Karl Heinz Marbaise
            Priority: Minor
             Fix For: 3.0.0


{code:java}
        // Handle the classifier if necessary
        // TODO: For 3.0 this should be changed having a separate classifier for main artifact and ejb-client.
        if ( classifier != null )
        {
            projectHelper.attachArtifact( project, "ejb", classifier, jarFile );
        }
        else
        {
            project.getArtifact().setFile( jarFile );
        }

        if ( generateClient )
        {
            generateEjbClient();
        }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)