Configure Spring Boot Without The Parent POM

Asked By 20 points N/A Posted on -
qa-featured

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?

SHARE
Answered By 0 points N/A #318602

Configure Spring Boot Without The Parent POM

qa-featured

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!

Related Questions