spring-fu
spring-fu copied to clipboard
Java 9 modules : split package org.springframework.boot.context.properties
This leads to this error when module-info.java requires spring.boot
and spring.fu.kofu
(that includes module spring.fu.autoconfigure.adapter
) :
java.lang.module.ResolutionException: Modules spring.boot and
spring.fu.autoconfigure.adapter
export package org.springframework.boot.context.properties
Solution is to change this package in project spring-fu-autoconfigure-adapter.
Edit : Even if the goal is to have these new classes included in spring.boot module, it should use a different package as long as it is provided as an external incubating module to allow jigsaw module to work.
Yeah I have to do that in order to be able to access package private Spring Boo classes, but let's put that in 0.4 bucket in order to work with Spring Boot team to avoid that.