-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some long overdue modularization but still not perfect; path finding,…
…tooling for concepts and the old shape code moved to separate modules
- Loading branch information
Showing
352 changed files
with
1,553 additions
and
1,299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
rx | ||
concepts | ||
algebra | ||
collections | ||
provides SparqlRx and LookupApi (e.g. RangedSupplier; implemented in core) | ||
|
||
concepts | ||
stmt | ||
|
||
stmt | ||
utils | ||
|
||
|
||
algebra | ||
utils | ||
udf | ||
concepts | ||
|
||
|
||
core | ||
collections? | ||
utils | ||
concepts | ||
rx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,58 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>jena-sparql-api-algebra</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<name>Jena SPARQL API - Algebra</name> | ||
|
||
<parent> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-parent</artifactId> | ||
<version>3.15.0-1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.aksw.commons</groupId> | ||
<artifactId>subgraph-isomorphism-index-jena</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-utils</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-udf</artifactId> | ||
</dependency> | ||
|
||
|
||
<!-- Unit Testing --> | ||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-resources-test-config</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- <dependency> --> | ||
<!-- <groupId>org.slf4j</groupId> --> | ||
<!-- <artifactId>slf4j-log4j12</artifactId> --> | ||
<!-- </dependency> --> | ||
|
||
|
||
</dependencies> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>jena-sparql-api-algebra</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<name>Jena SPARQL API - Algebra</name> | ||
|
||
<parent> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-parent</artifactId> | ||
<version>3.15.0-1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.aksw.commons</groupId> | ||
<artifactId>subgraph-isomorphism-index-jena</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-utils</artifactId> | ||
</dependency> | ||
|
||
<!-- <dependency> --> | ||
<!-- <groupId>org.aksw.jena-sparql-api</groupId> --> | ||
<!-- <artifactId>jena-sparql-api-concepts</artifactId> --> | ||
<!-- </dependency> --> | ||
|
||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-udf</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-concepts</artifactId> | ||
</dependency> | ||
|
||
<!-- Unit Testing --> | ||
<dependency> | ||
<groupId>org.aksw.jena-sparql-api</groupId> | ||
<artifactId>jena-sparql-api-resources-test-config</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- <dependency> --> | ||
<!-- <groupId>org.slf4j</groupId> --> | ||
<!-- <artifactId>slf4j-log4j12</artifactId> --> | ||
<!-- </dependency> --> | ||
|
||
|
||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...api-batch/src/main/java/org/aksw/jena_sparql_api/spring/conversion/C_StringToConcept.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pi-batch/src/main/java/org/aksw/jena_sparql_api/spring/conversion/C_StringToRelation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
jena-sparql-api-batch/src/test/java/org/aksw/jena_sparql_api/batch/TestParsers.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...api-cache/src/main/java/org/aksw/jena_sparql_api/concept_cache/core/RangedSupplierOp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rql-api-cache/src/main/java/org/aksw/jena_sparql_api/concept_cache/core/StorageEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.