On 18/08/17 15:01, [email protected] wrote:
Are you asking about an artifact for jena-text-es, or an artifact for
Fuseki equipped with jena-text-es?
Fuseki is normally run as a jar-with-dependencies using "java -jar"
One way to include extra JARs into fuseki is to use the jar on the
classpath and call the main method:
(all one line)
java -cp "ExtraJars:fuseki-server.jar"
org.apache.jena.fuseki.cmd.FusekiCmd ARGS
HTH
Andy
ajs6f
Andy Seaborne wrote on 8/18/17 9:54 AM:
Does exist by chance a binary for Text Search ES?
It's in maven central:
http://central.maven.org/maven2/org/apache/jena/jena-text-es/3.4.0/
On 18/08/17 13:21, Sorin Gheorghiu wrote:
Hello,
in order to include *jena-text-es *I had to build artifacts,
therefore I checkout the sources:
$ git clone https://github.com/apache/jena.git
$ cd jena
$ git checkout tags/jena-3.4.0
then I added in the pom.xml of /jena/jena-fuseki2/jena-fuseki-core/
<dependency> <groupId>org.apache.jena</groupId>
<artifactId>jena-text-es</artifactId> <version>3.4.0</version>
</dependency>
as well as in the pom.xml of /jena// (on all 3 profiles: dev,
bootstrap, complete)
... <module>jena-text-es</module> ...
but the build failed with error:
$ mvn clean install
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce
(enforce) on project jena-project: Execution enforce of goal
org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce failed:
An API incompatibility was encountered while executing
org.apache.maven.plugins:maven-enforcer-plugin:1.4.1:enforce:
java.lang.ExceptionInInitializerError: null
Maybe the version of mvn you are running is too old?
Did I miss a dependency or any other step?
Does exist by chance a binary for Text Search ES?
Thank you,
Sorin