"required class was missing" during Maven sonar scanning

Thank you, I have tried to add below snipet in my pom.xml

<dependency>
			<!--<groupId>javax.servlet</groupId>
			<artifactId>jstl</artifactId>
			<version>1.1.2</version> -->
			 <groupId>org.apache.taglibs</groupId>
    		<artifactId>taglibs-standard-impl</artifactId>
    		<version>1.2.5</version>
          <scope>compile</scope>  
            <optional>false</optional>
		</dependency>
      <dependency>
			<groupId>org.apache.taglibs</groupId>
    		<artifactId>taglibs-standard-spec</artifactId>
    		<version>1.2.5</version>
               <scope>compile</scope>  
               <optional>false</optional>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>

Still same issue …