I am trying to find a plugin to detect and process Java EE application applications.
I created a new type of packaging called "car" through META-INF / plexus / components.xml ( http://maven-car-plugin.googlecode.com/svn/trunk/maven-car-plugin/src/main/resources /META-INF/plexus/components.xml ) and the corresponding mojo for Java EE application clients. I almost completely followed the same steps as the maven-ejb-plugin.
The behavior I want is the same as maven-ejb-plugin: It determines the type of ejb package, but the artifact is installed in the repo as .jar and inserted into the ear like .jar too.
I believe that you need to configure it in some way, because the ejb packaging type is set to .jar, but the packaging type for war creates .war.
The problem in my case is that the .car file is installed in the repo and the .car file gets into my ear.
Does anyone know how to make sure it is installed in the repo as a .jar file?
Pablo source
share