# Problem with high level rest client in 7.4.0

**URL:** https://discuss.elastic.co/t/problem-with-high-level-rest-client-in-7-4-0/202102
**Category:** Elasticsearch
**Created:** [October 3, 2019, 7:10am UTC](https://discuss.elastic.co/t/problem-with-high-level-rest-client-in-7-4-0/202102 "2019-10-03T07:10:03Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![jettro](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/jettro/32/3418_2.png) [@jettro](https://discuss.elastic.co/u/jettro)
#### Post date: [October 3, 2019, 7:10am UTC](https://discuss.elastic.co/t/problem-with-high-level-rest-client-in-7-4-0/202102/1 "2019-10-03T07:10:03Z")

</div>

Hi,  
I am in the middle of upgrading my application to elasticsearch 7.4.0. The application makes use of maven and the high level rest client. There seems to be a problem though with the plugin **mapper-extras** :

Cannot resolve org.elasticsearch.plugin:mapper-extras:7.4.0

Did something change? Is it a deployment issue? What can/should I do?

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [October 3, 2019, 8:41am UTC](https://discuss.elastic.co/t/problem-with-high-level-rest-client-in-7-4-0/202102/2 "2019-10-03T08:41:18Z")

</div>

Have look at:

> <https://github.com/elastic/elasticsearch/issues/47413>

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [October 3, 2019, 9:37am UTC](https://discuss.elastic.co/t/problem-with-high-level-rest-client-in-7-4-0/202102/3 "2019-10-03T09:37:17Z")

</div>

So just to give a complete answer here:

- It was not published on Maven Central
- The team is working on publishing it anytime soon
- In the meantime you can use this:

```auto
<dependency>
    <groupId>org.elasticsearch.client</groupId>
    <artifactId>elasticsearch-rest-high-level-client</artifactId>
    <version>7.4.0</version>
    <!-- TODO Remove this with 7.4.1 or when it will be available on Maven Central -->
    <exclusions>
        <exclusion>
            <groupId>org.elasticsearch.plugin</groupId>
            <artifactId>mapper-extras</artifactId>
        </exclusion>
    </exclusions>
</dependency>

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [October 31, 2019, 9:37am UTC](https://discuss.elastic.co/t/problem-with-high-level-rest-client-in-7-4-0/202102/4 "2019-10-31T09:37:19Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
