spring-ws icon indicating copy to clipboard operation
spring-ws copied to clipboard

module not found: spring.ws.core

Open bsc2xp opened this issue 4 years ago • 0 comments

because there is not an Automatic-Module-Name entry in the manifest, so I used jar filename 'spring.ws.core' in module-info.java, but build task get an error "module not found: spring.ws.core" .

module-info.java `open module hummanResource { requires spring.beans; requires spring.context; requires org.slf4j; requires spring.core; requires spring.boot; requires spring.boot.autoconfigure; requires spring.ws.core; requires jdom2;

}`

how can I use spring-ws with java 9?

bsc2xp avatar Aug 09 '21 02:08 bsc2xp