You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2020/01/07 09:33:15 UTC

[jena] branch master updated: JENA-1810: Example of including jena-text-es in Fuseki

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

andy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena.git


The following commit(s) were added to refs/heads/master by this push:
     new 828236e  JENA-1810: Example of including jena-text-es in Fuseki
     new 2c99b95  Merge pull request #664 from afs/text-es
828236e is described below

commit 828236e53e0e847f0f17ebef840e282a955b5812
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Mon Jan 6 13:40:48 2020 +0000

    JENA-1810: Example of including jena-text-es in Fuseki
---
 jena-fuseki2/jena-fuseki-fulljar/pom.xml | 15 +++++++++++++++
 jena-fuseki2/jena-fuseki-server/pom.xml  | 14 ++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/jena-fuseki2/jena-fuseki-fulljar/pom.xml b/jena-fuseki2/jena-fuseki-fulljar/pom.xml
index 4d86359..cdae152 100644
--- a/jena-fuseki2/jena-fuseki-fulljar/pom.xml
+++ b/jena-fuseki2/jena-fuseki-fulljar/pom.xml
@@ -40,6 +40,21 @@
       <version>${project.version}</version>
     </dependency>
 
+
+    <!-- Illustration: include the Jena Text ElasticSearch code
+    <dependency>
+      <groupId>org.apache.jena</groupId>
+      <artifactId>jena-text-es</artifactId>
+      <version>${project.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.hdrhistogram</groupId>
+          <artifactId>HdrHistogram</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    -->
+
     <!-- Include jena-cmds in the server jar so 
          "java -cp server-jar jena.cmd ..." works
          as a convenience in deployments.
diff --git a/jena-fuseki2/jena-fuseki-server/pom.xml b/jena-fuseki2/jena-fuseki-server/pom.xml
index 0c73c83..4d32170 100644
--- a/jena-fuseki2/jena-fuseki-server/pom.xml
+++ b/jena-fuseki2/jena-fuseki-server/pom.xml
@@ -46,6 +46,20 @@
       <version>3.14.0-SNAPSHOT</version>
     </dependency>
 
+    <!-- Illustration: include the Jena Text Elastic Search code
+    <dependency>
+      <groupId>org.apache.jena</groupId>
+      <artifactId>jena-text-es</artifactId>
+      <version>${project.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.hdrhistogram</groupId>
+          <artifactId>HdrHistogram</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    -->
+
     <dependency>
       <groupId>org.apache.jena</groupId>
       <artifactId>jena-cmds</artifactId>