On 22/08/13 05:36, Ying Jiang wrote:
Hi,
I'm testing jena-spatial with fuseki. Could you please tell me how to
integrate jena-spatial into fuseki? I mean to make jena-spatial a module
included in fuseki-server.jar.
I find jena-text documentation says it's already done. But I can't see it
in jena-fuseki-0.2.7-distribution.
Since jena-spatial depends in lucene and solr, how to package them into
fuseki together with jena-spatial?
Best regards,
Ying Jiang
Hi there -
jene-text isn't in 0.2.7 (the last release, aligned to Jena 2.10.1)
It is in Fuseki 0.2.8-SNAPSHOT (jena 2.10.2 aligned):
https://repository.apache.org/content/repositories/snapshots/org/apache/jena/jena-fuseki/0.2.8-SNAPSHOT/jena-fuseki-0.2.8-20130820.080818-84.pom
All it takes is:
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-text</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
and then its dependencies of lucene and sol4j (the client) get pulled in
by maven-shade-plugin.
Andy