You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/10/24 06:54:37 UTC

[plc4x] branch feature/fix-elasticsearch-example created (now 6a575b7)

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a change to branch feature/fix-elasticsearch-example
in repository https://gitbox.apache.org/repos/asf/plc4x.git.


      at 6a575b7  Fixed a problem with running the elasticsearch example as updating elasticsearch in general required also updating lucene. Strangely it now needed an additional external dependency.

This branch includes the following new commits:

     new 6a575b7  Fixed a problem with running the elasticsearch example as updating elasticsearch in general required also updating lucene. Strangely it now needed an additional external dependency.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[plc4x] 01/01: Fixed a problem with running the elasticsearch example as updating elasticsearch in general required also updating lucene. Strangely it now needed an additional external dependency.

Posted by cd...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch feature/fix-elasticsearch-example
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 6a575b7413bd932424ffd697c6868ec469ebaeb1
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Thu Oct 24 08:54:25 2019 +0200

    Fixed a problem with running the elasticsearch example as updating elasticsearch in general required also updating lucene. Strangely it now needed an additional external dependency.
---
 plc4j/examples/hello-storage-elasticsearch/pom.xml | 5 +++++
 pom.xml                                            | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/plc4j/examples/hello-storage-elasticsearch/pom.xml b/plc4j/examples/hello-storage-elasticsearch/pom.xml
index 841cb53..23ce1a0 100644
--- a/plc4j/examples/hello-storage-elasticsearch/pom.xml
+++ b/plc4j/examples/hello-storage-elasticsearch/pom.xml
@@ -88,6 +88,11 @@
       <groupId>org.elasticsearch.plugin</groupId>
       <artifactId>transport-netty4-client</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+      <version>0.7</version>
+    </dependency>
 
     <dependency>
       <groupId>org.slf4j</groupId>
diff --git a/pom.xml b/pom.xml
index 1417dab..b948e0a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -145,7 +145,7 @@
     <log4j.version>2.11.1</log4j.version>
     <logback.version>1.2.3</logback.version>
     <logstash.version>7.4.0</logstash.version>
-    <lucene.version>8.0.0</lucene.version>
+    <lucene.version>8.2.0</lucene.version>
     <metrics-core.version>3.1.2</metrics-core.version>
     <mockito.version>2.24.5</mockito.version>
     <netty.version>4.1.39.Final</netty.version>