Skip to content

Commit 8c1d61d

Browse files
committed
es 6.5.4 support
1 parent 619bc2d commit 8c1d61d

File tree

2 files changed

+3
-23
lines changed

2 files changed

+3
-23
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ before_install:
77
# update to java 8
88
- sudo update-java-alternatives -s java-8-oracle
99
- export JAVA_HOME=/usr/lib/jvm/java-8-oracle
10-
- wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.5.3.deb && sudo dpkg -i --force-confnew elasticsearch-6.5.3.deb
10+
- wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.5.4.deb && sudo dpkg -i --force-confnew elasticsearch-6.5.4.deb
1111
- sudo cp ./src/test/resources/elasticsearch.yml /etc/elasticsearch/elasticsearch.yml
1212
- sudo cat /etc/elasticsearch/elasticsearch.yml
1313
- sudo java -version

pom.xml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.nlpcn</groupId>
55
<artifactId>elasticsearch-sql</artifactId>
6-
<version>6.5.3.1</version>
6+
<version>6.5.4.0</version>
77
<packaging>jar</packaging>
88
<description>Query elasticsearch using SQL</description>
99
<name>elasticsearch-sql</name>
@@ -44,7 +44,7 @@
4444
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4545
<runSuite>**/MainTestSuite.class</runSuite>
4646
<elasticsearch.plugin.name>sql</elasticsearch.plugin.name>
47-
<elasticsearch.version>6.5.3</elasticsearch.version>
47+
<elasticsearch.version>6.5.4</elasticsearch.version>
4848
<elasticsearch.plugin.classname>org.elasticsearch.plugin.nlpcn.SqlPlug</elasticsearch.plugin.classname>
4949
</properties>
5050

@@ -123,26 +123,6 @@
123123
<scope>provided</scope>
124124
</dependency>
125125

126-
<dependency>
127-
<groupId>log4j</groupId>
128-
<artifactId>log4j</artifactId>
129-
<version>1.2.17</version>
130-
<scope>provided</scope>
131-
</dependency>
132-
133-
<dependency>
134-
<groupId>org.apache.logging.log4j</groupId>
135-
<artifactId>log4j-api</artifactId>
136-
<version>2.7</version>
137-
<scope>provided</scope>
138-
</dependency>
139-
<dependency>
140-
<groupId>org.apache.logging.log4j</groupId>
141-
<artifactId>log4j-core</artifactId>
142-
<version>2.7</version>
143-
<scope>provided</scope>
144-
</dependency>
145-
146126
<dependency>
147127
<groupId>javax.servlet</groupId>
148128
<artifactId>servlet-api</artifactId>

0 commit comments

Comments
 (0)