mirror of https://github.com/apache/maven.git
PR: MNG-1264
Submitted by: Jerome Lacoste Reviewed by: Stephane Nicoll Support of PAR and EJB3 artifact's type in EAR plugin git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@327654 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0969f7be0a
commit
4fb568ab4c
|
@ -44,6 +44,14 @@ public final class EarModuleFactory
|
|||
{
|
||||
return new EjbModule( artifact );
|
||||
}
|
||||
else if ( "ejb3".equals( artifact.getType() ) )
|
||||
{
|
||||
return new EjbModule( artifact );
|
||||
}
|
||||
else if ( "par".equals( artifact.getType() ) )
|
||||
{
|
||||
return new EjbModule( artifact );
|
||||
}
|
||||
else if ( "ejb-client".equals( artifact.getType() ) )
|
||||
{
|
||||
return new EjbClientModule( artifact );
|
||||
|
|
Loading…
Reference in New Issue