]
James Perkins moved WFMP-50 to JBASMP-84:
-----------------------------------------
Project: JBoss AS Maven Plugins (was: WildFly Maven Plugin)
Key: JBASMP-84 (was: WFMP-50)
Component/s: (was: Maven Plugin)
Fix Version/s: 7.9.Final
(was: 1.1.0.Alpha11)
Default packaging types links ejb projects to a mave-plugin project
which is ignored by default
-----------------------------------------------------------------------------------------------
Key: JBASMP-84
URL:
https://issues.jboss.org/browse/JBASMP-84
Project: JBoss AS Maven Plugins
Issue Type: Bug
Reporter: James Perkins
Assignee: James Perkins
Priority: Blocker
Fix For: 7.9.Final
The {{org.wildfly.plugin.deployment.PackageType}} static mapping links the EJB packaging
type to the {{MAVEN_PLUGIN}} type which by default is skipped for deployments. The proper
type needs to be added to the map.
{code:java}
static {
DEFAULT_TYPES = new HashMap<>();
DEFAULT_TYPES.put(MAVEN_PLUGIN.packaging, MAVEN_PLUGIN);
DEFAULT_TYPES.put(POM.packaging, MAVEN_PLUGIN);
DEFAULT_TYPES.put(EJB.packaging, MAVEN_PLUGIN);
}
{code}