Hello Guys,
I have to use spring core 5.4.1 in my current project which is using maven for dependency management. My Project is already setup with old version Spring Core. Now I have to upgrade it to spring core 5.4.1. So, what dependency code should I add into my project's pom.xml file.
Share me the pom.xml dependency code for Spring 5.4.1.
Thanks
Hi,
The Spring core 5.4.1 was released in October 2020. To use this version of Spring framework you have to add following code into pom.xml file of Spring Framework.
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> <version>5.4.1</version> </dependency>
Above dependency code will download the jar files of all the dependent packages.
Thanks
Ads