I also ran into the same issue in a Maven based project when testing a demo for a JWT project.
I just removed the version from the dependency as below-
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency>
running this maven dependency converter accepts the default supported version.
Earlier, I explicitly mentioned version 2.1.3.RELEASE, which caused the problem, and then I deleted the version, then it took the default 2.0.3.RELEASE and worked for me.
The problem is resolved. !!!!!!!!!!!!!!!!!!
source share