Skip to content

Commit 25259fc

Browse files
author
James Leigh
committed
Issue #874: Add solr and elasticsearch to sdk
Signed-off-by: James Leigh <james.leigh@ontotext.com>
1 parent d9d9943 commit 25259fc

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

core/runtime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</dependency>
2626
<dependency>
2727
<groupId>${project.groupId}</groupId>
28-
<artifactId>rdf4j-store</artifactId>
28+
<artifactId>rdf4j-storage</artifactId>
2929
<version>${project.version}</version>
3030
</dependency>
3131

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
<modules>
5252
<module>client</module>
53-
<module>store</module>
53+
<module>storage</module>
5454
<module>core</module>
5555
<module>testsuites</module>
5656
<module>compliance</module>

store/pom.xml renamed to storage/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>rdf4j</artifactId>
77
<version>2.3-SNAPSHOT</version>
88
</parent>
9-
<artifactId>rdf4j-store</artifactId>
9+
<artifactId>rdf4j-storage</artifactId>
1010
<name>RDF4J: Storage</name>
1111
<description>RDF4J storaging, indexing and inferencing libraries</description>
1212
<dependencies>
@@ -198,11 +198,21 @@
198198
</exclusion>
199199
</exclusions>
200200
</dependency>
201+
<dependency>
202+
<groupId>org.eclipse.rdf4j</groupId>
203+
<artifactId>rdf4j-sail-elasticsearch</artifactId>
204+
<version>${project.version}</version>
205+
</dependency>
201206
<dependency>
202207
<groupId>org.eclipse.rdf4j</groupId>
203208
<artifactId>rdf4j-sail-lucene</artifactId>
204209
<version>${project.version}</version>
205210
</dependency>
211+
<dependency>
212+
<groupId>org.eclipse.rdf4j</groupId>
213+
<artifactId>rdf4j-sail-solr</artifactId>
214+
<version>${project.version}</version>
215+
</dependency>
206216
<dependency>
207217
<groupId>org.eclipse.rdf4j</groupId>
208218
<artifactId>rdf4j-sail-memory</artifactId>

0 commit comments

Comments
 (0)