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.