[ https://issues.apache.org/jira/browse/MEJB-13?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17966060#comment-17966060 ]
Olivier Lamy commented on MEJB-13: ---------------------------------- This project has moved from Jira to GitHub Issues. This issue was migrated to [apache/maven-ejb-plugin#55|https://github.com/apache/maven-ejb-plugin/issues/55]. > Add support for configuring exclusion filter for main ejb jar > ------------------------------------------------------------- > > Key: MEJB-13 > URL: https://issues.apache.org/jira/browse/MEJB-13 > Project: Maven EJB Plugin (Moved to GitHub Issues) > Issue Type: New Feature > Affects Versions: 2.0, 2.1 > Environment: Maven 2.0.4, maven-ejb-plugin 2.1-SNAPSHOT, JBoss > 4.0.3sp1 > Reporter: Fredrik Vraalsen > Assignee: Dennis Lundberg > Priority: Major > Fix For: 2.2 > > Attachments: MEJB-configure-excludes.patch, > maven-ejb-plugin-configure-main-jar-excludes-2.patch, > maven-ejb-plugin-configure-main-jar-excludes.patch > > > In my ejb project I have certain files that must only be included in the > ejb-client jar and not the main ejb jar (jboss-client.xml, > application-client.xml and jndi.properties). When these files are present in > the main ejb jar, JBoss refuses to deploy my ejbs. > Thus, I need a way to configure the exclusion filter for the main ejb jar. > This is currently hardcoded in EjbMojo.java. I am attaching a patch to make > this configurable in the same way as clientExcludes. > Below is an example of the kind of configuration I am using: > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-ejb-plugin</artifactId> > <version>2.1-SNAPSHOT</version> > <configuration> > <excludes> > > <exclude>jndi.properties</exclude> > > <exclude>META-INF/*-client.xml</exclude> > > <exclude>**/interfaces/</exclude> > > <exclude>**/assetrepository/Asset.class</exclude> > </excludes> > <generateClient>true</generateClient> > <clientExcludes> > > <clientExclude>META-INF/ejb-jar.xml</clientExclude> > > <clientExclude>META-INF/jboss.xml</clientExclude> > > <clientExclude>**/dao/</clientExclude> > > <clientExclude>**/entity/</clientExclude> > > <clientExclude>**/jaxb/</clientExclude> > > <clientExclude>**/session/</clientExclude> > > <clientExclude>**/xmldb/</clientExclude> > </clientExcludes> > </configuration> > </plugin> -- This message was sent by Atlassian Jira (v8.20.10#820010)