I upgraded to Spring Boot 1.4.0 and my Maven project does not compile. Here is the scenario:
- Module 1 / Spring Download
- Module 2 / Spring Module 1 Dependent Download
When I compile module 2, I get errors that packages / classes do not exist (they exist in module 1). Maven correctly installed the class patch (jar was added to it from the target of module 1).
When I upgrade to Spring Boot 1.3.6, it compiles without any problems.
I checked the release notes for Spring Boot 1.4, and there is no information about any actions that need to be performed in this area.
Have you observed the same behavior with Spring Boot 1.4?
I have such a configuration that allows me to check. Both modules are microservices, and I have tests for module 2 that I want to run without starting module 1 as a separate microservice.
source
share