NoSuchMethodError for org.elasticsearch.action.support.IndicesOptions.ignoreThrottled()

Full POM file attached. I have removed transport dependency. But I still get the issue.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
    		<groupId>org.springframework.boot</groupId>
    		<artifactId>spring-boot-starter-parent</artifactId>
    		<version>2.1.2.RELEASE</version>
    		<relativePath /> <!-- lookup parent from repository -->
    	</parent>
      <groupId>org.springframework.samples</groupId>
      <artifactId>TestMavenYY</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      
      <properties>

    		<!-- Generic properties -->
    		<java.version>1.8</java.version>
    		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

    		

    	

    	</properties>
    	
    	<dependencies>
    		<!-- Spring and Transactions -->
    		<dependency>
    			<groupId>org.springframework</groupId>
    			<artifactId>spring-context</artifactId>
    		
    		</dependency>
    		<dependency>
    			<groupId>org.springframework</groupId>
    			<artifactId>spring-tx</artifactId>
    			
    		</dependency>
    		
    <dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter-web</artifactId>
    			
    		</dependency>
    		

    		<!-- Logging with SLF4J & LogBack -->
    		<dependency>
    			<groupId>org.slf4j</groupId>
    			<artifactId>slf4j-api</artifactId>
    		
    			<scope>compile</scope>
    		</dependency>
    		<dependency>
    			<groupId>ch.qos.logback</groupId>
    			<artifactId>logback-classic</artifactId>
    			
    			<scope>runtime</scope>
    		</dependency>

    		<!-- Hibernate -->
    		<dependency>
    			<groupId>org.hibernate</groupId>
    			<artifactId>hibernate-entitymanager</artifactId>
    			
    		</dependency>

    		
    		<!-- Test Artifacts -->
    		<dependency>
    			<groupId>org.springframework</groupId>
    			<artifactId>spring-test</artifactId>
    			
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>com.siemens.mindsphere</groupId>
    			<artifactId>mindsphere-sdk</artifactId>
    			<version>1.1.0</version>
    		</dependency>
    		<dependency>
                     <groupId>com.siemens.mindsphere</groupId>
                     <artifactId>mindsphere-sdk</artifactId>
                     <version>1.2.1</version>
                 </dependency>
    		
    		
    		<dependency>
    			<groupId>org.springframework</groupId>
    			<artifactId>spring-core</artifactId>
    		
    		
    		</dependency>
    		<dependency>
    		    <groupId>com.google.code.gson</groupId>
    		    <artifactId>gson</artifactId>
    		    
    		</dependency>
    		
    		<dependency>
    		    <groupId>com.rabbitmq</groupId>
    		    <artifactId>amqp-client</artifactId>
    		    
    		</dependency>
    		<dependency>
    		   <groupId>org.glassfish</groupId>
    		   <artifactId>javax.json</artifactId>
    		   <version>1.1.4</version>
    		</dependency>
    		
    		
    		<dependency>
        		<groupId>org.elasticsearch.client</groupId>
        		<artifactId>elasticsearch-rest-high-level-client</artifactId>
        		<version>7.2.0</version>
    		</dependency>
    		

    	</dependencies>	
    </project>