I'm trying to build a war file to be deployed to a tomcat server using Maven, but have noticed some strange behaviour when building my war file:
When running the command from project folder: mvn clean compile package -DskipTests
- Maven version 3.0 produces a war file 12.079MB (49 jar files in WEB-INF/lib folder)
- Maven version 3.0 beta1 produces a war file 8.7MB (31 jar files in WEB-INF/lib folder)
- Maven version 2.11 produces a war file 2.3MB (3 jar files in WEB-INF/lib folder)
What can be causing the extra jar files to be included in the project? Presumably they are not needed as building the project using version 2.11 has worked fine in the past.