I am following this guide to build an application named [Entando][2].
Particularly I did the steps in 2.2 using the maven
command to build the application
mvn archetype:generate -Dfilter=entando-archetype-webapp-generic
and it was successful.
Then to launch the application there is written to use the maven
command
mvn clean jetty:run
At first I had the error described here but solved thanks to the answer there.
Now I am getting a similar error for javax.xml.ws:WebServiceContext
:
I tried to modify the pom.xml
file by adding:
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>WebServiceContext</artifactId>
<version>2.2.11</version>
</dependency>
but it did not work resulting in the error:
Could not find artifact javax.xml.ws:WebServiceContext:jar:1.1.1 in snapshot-repository (https://oss.sonatype.org/content/repositories/snapshots/)
How can I solve it?