Skip to content

Commit

Permalink
Update to Elastic 7.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Kotoy committed Jul 7, 2020
1 parent cce90e2 commit e515ba8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion extra-analysis-esperanto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikimedia.search</groupId>
<artifactId>extra-analysis</artifactId>
<version>7.7.1.0-SNAPSHOT</version>
<version>7.8.0.0-SNAPSHOT</version>
</parent>

<artifactId>extra-analysis-esperanto</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
import org.elasticsearch.Version;
import org.elasticsearch.cluster.metadata.IndexMetaData;
import org.elasticsearch.cluster.metadata.IndexMetadata;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.env.Environment;
import org.elasticsearch.index.IndexSettings;
Expand All @@ -25,7 +25,7 @@ public class EsperantoStemmerESTest extends ESTestCase {
public void testPrebuilt() throws IOException {
Settings indexSettings = settings(Version.CURRENT)
.loadFromStream("prebuilt.json", this.getClass().getResourceAsStream("prebuilt.json"), false)
.put(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT)
.put(IndexMetadata.SETTING_VERSION_CREATED, Version.CURRENT)
.build();
IndexSettings indexProps = IndexSettingsModule.newIndexSettings("test", indexSettings);
Settings settings = Settings.builder()
Expand Down
2 changes: 1 addition & 1 deletion extra-analysis-serbian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.wikimedia.search</groupId>
<artifactId>extra-analysis</artifactId>
<version>7.7.1.0-SNAPSHOT</version>
<version>7.8.0.0-SNAPSHOT</version>
</parent>

<artifactId>extra-analysis-serbian</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
import org.elasticsearch.Version;
import org.elasticsearch.cluster.metadata.IndexMetaData;
import org.elasticsearch.cluster.metadata.IndexMetadata;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.env.Environment;
import org.elasticsearch.index.IndexSettings;
Expand All @@ -34,7 +34,7 @@ public void testRedefined() throws IOException {
private void assertAnalyzerAvailable(String analyzerName, String analysisResource) throws IOException {
Settings indexSettings = settings(Version.CURRENT)
.loadFromStream(analysisResource, this.getClass().getResourceAsStream(analysisResource), false)
.put(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT)
.put(IndexMetadata.SETTING_VERSION_CREATED, Version.CURRENT)
.build();
IndexSettings indexProps = IndexSettingsModule.newIndexSettings("test", indexSettings);
Settings settings = Settings.builder()
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.wikimedia.search</groupId>
<artifactId>extra-analysis</artifactId>
<version>7.7.1.0-SNAPSHOT</version>
<version>7.8.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Elasticsearch extra plugins (GPL)</name>
<description>Extra (GPL) Analysis Modules for Elasticsearch.</description>
Expand Down Expand Up @@ -41,7 +41,7 @@
</issueManagement>

<properties>
<elasticsearch.version>7.7.1</elasticsearch.version>
<elasticsearch.version>7.8.0</elasticsearch.version>
<hamcrest.version>2.2</hamcrest.version>
<log4j.version>2.13.3</log4j.version>
<lucene.version>8.5.1</lucene.version>
Expand Down

0 comments on commit e515ba8

Please sign in to comment.