The trigger is
pde || ( Constants.LANGUAGE_JAVA.equals( artifactHandler.getLanguage() ) 
&& !Constants.PROJECT_PACKAGING_EAR.equals( packaging ) );

Therefore, if you have a custom packaging type, you need to add the 
following to META-INF/plexus/components.xml

<component>
    <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
    <role-hint>custom-packaging-type</role-hint>
 
<implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
    <configuration>
        <type>custom-packaging-type</type>
        <extension>jar</extension>
        <language>java</language>
        <addedToClasspath>true</addedToClasspath>
    </configuration>
</component>

______________________________________
Diese E-Mail kann vertrauliche und geschuetzte Informationen enthalten. Wenn 
diese E-Mail nicht für Sie bestimmt ist, bitten wir Sie, uns unverzueglich zu 
informieren und sie zu loeschen. 

This e-mail message may contain information, which is confidential and 
protected. If you are not the intended recipient of this message, we ask you to 
inform us immediately and delete the message afterwards.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to