Hi all, I want to integrate the following change: https://github.com/apache/ignite/pull/3147/
It adds spring3 support. With Ignite versions older 2.1 you can to force maven to use sprint3 dependency and everything would work fine. With newer versions this doesn't work, because now Ignite uses spring4 specific features and spring3 and ignite 2.1+ don't work simultaneously on one project. If you need ignite 2.1+ you have to update spring in your project to version 4 at least, however, it isn't always possible to do so. So I want to add a new module that has no spring4 specific features and itself depends on spring3, with this module you don't even need to force maven to use specific spring version, you just can import ignite-spring3 and that's it. This will allow updating ignite version in legacy apps easier and increase ignite 2+ adaptation. Any thoughts? Objections? Thanks, Mike.