If I have a war configuration which builds a standard war file with a WEB-INF/lib directory. The jar files come out as spring-core.jar. Is it possible to include the version number that are listed in the dependency list, e.g. I want to have a war with version numbers,
WEB-INF/lib/spring-4.3.8.RElEASE.jar
Instead of:
WEB-INF/lib/spring.jar
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<outputFileNameMapping>@{artifactId}@.@{extension}@</outputFileNameMapping>
<webResources>
<resource>
<directory>WebContent</directory>
</resource>
</webResources>
</configuration>
</plugin>