I want to migrate my web app from standard war to WAB using Virgo Tomcat Server. The std war file depends on spring 3.2.0.RELEASE and VTS has 3.1.0.RELEASE. I tried to deploy all the spring 3.2.0 jars and my web app specific jars in usr directory of virgo. And when i try to deploy the war in pickup folder with import to 3.2.0 spring release, there is a version conflict between the 3.1.0 and 3.2.0 releases.
Will the highest available version of jar from the specified range not be picked up?
ex., there are 2 jars
1. spring-core version 3.1.0.RELEASE
2. spring-core version 3.2.0.RELEASE
And the manifest has an import saying org.springframework.core;version="[3,4)"
shouldnt it pick up 3.2.0.RELEASE