I need to use spring boot devtools to force reload of static resource during dev time.
I added follow code to my pom
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> <scope>runtime</scope> </dependency> but maven did not found the dependecy,
I need to add respoitory uri?