> <includes> > <include>spring-context.xml</include> > </includes>
As Anders has told you repeatedly now, this <include> line in your config tells Maven to "only include the following file(s) in my jar" and that is exactly what Maven is doing. Remove the include, leave only the <excludes>, and your classes should magically appear in the jar file. Wayne
