I have multiple services (serviceA, ServiceB ..)using spring integration . Each service is dependent upon other submodules(which again is using spring integration).
In most of our config xml files we have hard coded the version like below : http://www.springframework.org/schema/integration/ws http://www.springframework.org/schema/integration/ws/spring-integration-ws-3.0.xsd
I have a task to migrate one service (ServiceA) from spring integration 3 to 4. I changed the config files to use versionless aliases (e.g. spring-integration.xsd), but as this service is dependent on other services, it looks like I have to change all the dependent services also to spring integration 4.
Is there any other option ?