Hi all,
I am trying to run a spring boot application from Jdeveloper12c. I use Maven to get dependencies. The POM has a spring-boot-starter-parent as a parent.
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.2.RELEASE</version>
</parent>
However, JDeveloper libraries does not recognize the dependencies downloaded using the parent. This causes compile error when compiling the application using JDeveloper Make/Rebuild. Is there a way for classpath entries under Project Properties > Libraries and Classpath to recognize dependencies download through the POM parent.
Thank you.