Configure Spring Boot Without The Parent POM
I was trying to establish a spring boot using the POM but was not able to do so. The process never gets completed and always prompts error. How can I do the same with proper completion?
I was trying to establish a spring boot using the POM but was not able to do so. The process never gets completed and always prompts error. How can I do the same with proper completion?
Everyone does not like to inherit the parent POM from the Spring Boot Starter. You must use your own primary corporate standard or explicitly declare your entire Maven configuration
<dependencyManagement> <dependencies><dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.5.8.RELEASE</version>
<type>pom</type> <scope>import</scope>
</dependency></dependencies></dependencyManagement>
This will solve the problem!