When will maven have the update for beta2 ?
Thanks
When will maven have the update for beta2 ?
Thanks
It's there: https://search.maven.org/#artifactdetails|org.elasticsearch|elasticsearch|6.0.0-beta2|jar
Thanks. I updated the repository reference and got a clean compile.
elastic-lucene-snapshots Elastic Lucene Snapshots http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/a128fcb true falseIs there a suggested repository to add to my settings.xml so maven will download the pom referenced lucene snapshot builds?
https://repository.apache.org/content/groups/snapshots/org/apache/lucene/lucene-core/7.0.0-SNAPSHOT/
only keeps a few around, and so I am unable to get maven download those referenced in the elasticsearch pom(s).
Here is what I added to my pom.xml
in case it helps:
HTH
Thanks.
Instead of adding directly to my project pom, I added it to an active profile in ~/.m2/settings.xml:
<repositories>
<repository>
<id>elasticlucenesnapshots</id>
<name>elastic lucene</name>
<url>http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/a128fcb</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
It would be prudent to add the repository to elasticsearch pom while in beta, devs probably already know of it, but as a user I did not know where to look. Thanks again for you assistance.
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
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.