> anybody know how to get Maven to include non-class files into a JAR? > > i have .jrxml files that I precompile into .jasper files via a custom plugin > but maven is not including them in the EAR AFAIK.
Put them in the correct directory (src/main/resources in general) and they should be bundled into the Jar properly. Ear files are a little bit special. In most cases, you should put the non-class files in a jar and then depend on the jar artifact rather than putting them directly in the Ear. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
