My pom.xml looks like this (note I'm building a JAR as well as a WAR):
...
<packaging>war</packaging>
...
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<containerConfigXML>src/main/webapp/META-INF/context.xml</containerConfigXML>
<archiveClasses>true</archiveClasses>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
However, the generated JAR only includes the classes in WEB-INF/classes. How can I get the JAR to include the classes in src/main/java/com/... etc as well - without having to add all the classes to the WEB-INF directory?
Thanks!