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:
Stephane Nicoll 2005-10-22 11:14:37 +00:00
parent 0969f7be0a
commit 4fb568ab4c
1 changed files with 8 additions and 0 deletions

View File

@ -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 );