Closed
Description
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?