Problem with high level rest client in 7.4.0

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?

Have look at:

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:
<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>

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