java - SonarQube “Class not found: javax.xml.rpc.handler.MessageContext” during maven sonar build -


using sonar cube version 4.5.2. apache maven 3.0.2 java version: 1.8.0_65

my maven build process comes several errors such

class not found: javax.xml.rpc.handler.messagecontext

how fix problem? sonar trying find package?

you need add jaxrpc-api resolve issue. can fine dependecy below:

<dependency>     <groupid>javax.xml</groupid>     <artifactid>jaxrpc-api</artifactid>     <version>1.1</version> </dependency> 

you can use javax.xml.rpc resolve issue. can find dependency below:

<dependency>     <groupid>org.glassfish</groupid>     <artifactid>javax.xml.rpc</artifactid>     <version>3.0-b74b</version> </dependency> 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -