-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reindex-client references elasticsearch-ssl-config:jar:7.0.0-beta1 which is missing in maven central #38944
Comments
Pinging @elastic/es-core-infra |
Got the same issue. Posting here a workaround in case someone else is getting this. <dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>7.0.0-beta1</version>
<exclusions>
<exclusion>
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>reindex-client</artifactId>
</exclusion>
</exclusions>
</dependency> EDIT: Actually this does only allow to compile but can not work when starting the Transport client. |
Note this is not a complete work as it will require elastic/elasticsearch#38944 to be fixed first.
This is used by the reindex-client library which is published to maven Relates: elastic#37287, elastic#37527 Closes: elastic#38944
The required jar file is available as The build has been corrected so this will be published to maven in future releases. |
This is used by the reindex-client library which is published to maven Relates: elastic#37287, elastic#37527 Closes: elastic#38944 Backport of: elastic#39019
Elasticsearch version (
bin/elasticsearch --version
):7.0.0-beta1
Plugins installed:
none
JVM version (
java -version
):openjdk version "11" 2018-09-25
OpenJDK Runtime Environment 18.9 (build 11+28)
OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
OS version (
uname -a
if on a Unix-like system):Darwin xxx.local 17.7.0 Darwin Kernel Version 17.7.0: Thu Dec 20 21:47:19 PST 2018; root:xnu-4570.71.22~1/RELEASE_X86_64 x86_64 i386 MacBookPro15,1 Darwin
Description of the problem including expected versus actual behavior:
reindex-client references elasticsearch-ssl-config:jar:7.0.0-beta1 which is missing in maven central
Steps to reproduce:
Try "mvn clean install" on a pom that includes
The text was updated successfully, but these errors were encountered: