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 2013/06/07 21:12:29 UTC

svn commit: r1490788 - /jena/site/trunk/content/documentation/query/text-query.mdtext

Author: andy
Date: Fri Jun  7 19:12:29 2013
New Revision: 1490788

URL: http://svn.apache.org/r1490788
Log:
Add note on how to include jena-text with maven

Modified:
    jena/site/trunk/content/documentation/query/text-query.mdtext

Modified: jena/site/trunk/content/documentation/query/text-query.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/text-query.mdtext?rev=1490788&r1=1490787&r2=1490788&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/text-query.mdtext (original)
+++ jena/site/trunk/content/documentation/query/text-query.mdtext Fri Jun  7 19:12:29 2013
@@ -37,6 +37,7 @@ the actual label.  More details are give
 - [Query with SPARQL](#query-with-sparql)
 - [Configuration](#configuration)
 - [Working with Fuseki](#fuseki)
+- [Download for Application Use](#maven-dependency)
 
 ## Architecture
 
@@ -255,7 +256,6 @@ The Fuseki configuration simply points t
         fuseki:dataset                  :text_dataset ;
         .
 
-
 ## Deletion
 
 If the text index is being maintain by changed to the RDF, then deletion of
@@ -281,3 +281,17 @@ does, returning the whole label.
 By only indexing, and not storing, literals, the index is kept smaller.  It
 may be necessary to periodically rebuild the index if a large proportion
 of the RDF data changes.
+
+## Maven Dependency
+
+The <code>jena-text</code> module is included in Fuseki.  To use it within application code,
+then use the following maven dependency:
+
+    <dependency>
+      <groupId>org.apache.jena</groupId>
+      <artifactId>jena-text</artifactId>
+      <version>X.Y.Z</version>
+    </dependency>
+
+adjusting the version <code>X.Y.Z</code> as necessary.  This will automatically
+include a compatible version of Lucene and the Solr java client, but not Solr server.
\ No newline at end of file