Reputation: 568
what is "the correct" way to change the spring version used by my Grails project? Latest version bundles spring 3.1.0 and I would like to know how can I change it to latest (3.1.2) ?
Is manual adding of particular dependencies to BuildConfig.groovy the only way?
Upvotes: 2
Views: 1770
Reputation: 2611
You are correct that you can modify the BuildConfig.groovy. But as @Gregg mentioned, I would not do it :) Grails is tested with a specific version of spring, and you make get some unexpected results and behavior if you upgrade spring.
Do at your own risk!
Upvotes: 2