I have a project which I am converting from ANT to Maven. One of the
artifacts is an EJB project. I am trying to create the ejb-client jar
artifact and it is excluding some of my class files due to the default
exclusion **/*Bean.class set on the maven-ejb-pluign. At the current time I
can not refactor the Class name due to some poor designed. Is there a way to
turn off the default exclusions. I tried the following ::

<clientIncludes>
      <clientInclude>**/SomeBean.class</clientInclude>
</clientIncludes>

But since exclusion have higher priority and there are default exclusions it
will not add the class to the ejb-client jar file.

-Kyle

Reply via email to