Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a maven project which is packaged using the ejb-plugin. This is so because the project holds one interface which is annotated @Remote.The project does not hold the implementation.

Should I use the ejb-plugin here or is this a simple jar (used as a library)?

What makes a maven project an EJB-Module?

share|improve this question
Are you using this packaging style to distribute your EJB client interfaces? – Vineet Reynolds Aug 22 '11 at 8:22
Yes, that's one reason. – boutta Aug 22 '11 at 9:31

1 Answer

Use a simple jar packaging for module with interfaces.

In module with implementation use ejb packaging and define a simple jar dependency to module with interfaces. For modules with ejb packaging maven will run ejb:ejb mojo of maven-ejb-plugin - do configure it (e.g. set ejbVersion to 3.0). For ejb module Maven will produce a jar archive. What used to make ejb jar specific is ejb-jar.xml, but starting from EJB 3.0 that's optional, annotations are used for metadata. Valid deployable ejb jar is one that has at least one EJB bean (session, entity, or message-driven).

In third module with ear packaging you can configure maven-ear-plugin with a reference to ejb module; ear module will produce ear archive with ejb module included, and with all ejb module dependencies as well, including interfaces jar module.

share|improve this answer
Are there reasons why I should do this the way you described? Or is this only your opinion? – boutta Sep 19 '11 at 5:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.