Spring-WS: consume service
Clash Royale CLAN TAG #URR8PPP Spring-WS: consume service I try to follow the example on spring site to consume a SOAP web service (https://spring.io/guides/gs/consuming-web-service/) : The application works, it consume correctly the services, but on the pom.xml file there is an error. The part of pom that give the error is : <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <version>0.14.0</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <schemaLanguage>WSDL</schemaLanguage> <generatePackage>home.wsdl</generatePackage> <schemas> <schema> <url>http://localhost:8080/ws/countries.wsdl</url> ...