Hello,
I need to test a fix for elasticsearch 7.14.0 code with my plugin installed. The plugin version must match to be installed, but the latest publicly available build-tools is 7.13.2. I can build elasticsearch-7.14.0-SNAPSHOT.jar from sources, but I do not know where to get org.elasticsearch.gradle:build-tools:7.14.0. If I set version to 7.14.0 in gradle, I get error:
You'll need to use the snapshot version of the plugin since 7.14.0 has not yet been released. Snapshot versions are published to a separate repository, but you can add it to your build:
Ah yes, that's some fallout from some recent refactorings, thanks for reporting. I've opened a PR to address this. Once merged, it'll be in the next snapshot build.
I confirm, I was able to build my plugin after your changes and after adding the following by @dikunov to get org.apache.lucene:lucene-core:8.9.0-snapshot-ddc238e5df8
maven {
name "lucene-snapshots"
url 'https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/ddc238e5df8'
}
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.