I created a new Maven Project and selected the org.codehaus.mojo.arhcetypes ear-javaee6 archetype. When I try to add a Java class to the project I get "Source folder is not a java project".

So we are not supposed to add Java classes to out .ear files now. What are these guys thinking when they create a project for a .ear but don't allow for Java classes?

What archetype should I use for creating Java EE 6 .ear files?

link|improve this question

63% accept rate
+1 for solidarity (same issue). Gorram Eclipse is frustrating – Dacav Jan 25 at 9:37
feedback

1 Answer

up vote 0 down vote accepted

From Wikipedia, EAR (file format):

EAR (Enterprise Archive) is a file format used by Java EE for packaging one or more modules into a single archive [...]

Create an EJB (ejb-javaee6 archetype) or WAR project (webapp-javaee6 archetype for example) for your java codes and refer to it from the Ear plugin configuration (and add as dependency too).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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