hi guys. i have java project and current spring version is 2.2.6. i need to update the version to the newest. as i understand its 3.3.3. so i have a couple of questions;
- since i use gradle, i just need to change the version here?
plugins {
id 'org.springframework.boot' version '2.2.6.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
- is there smth to look out for when updating spring version in my project?
thanks in advance