Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:SmartDataAnalytics/SparqlIntegra…
Browse files Browse the repository at this point in the history
…te into develop
  • Loading branch information
Aklakan committed Oct 10, 2024
2 parents b6595af + fc861ae commit 5b62e32
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion docs/getting-started/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ EXTRA_OPTS="--add-opens=java.base/java.lang=ALL-UNNAMED \
SCRIPTING_OPTS="-Djena:scripting=true -Dnashorn.args=--language=es6"

java $SCRIPTING_OPTS $JAVA_OPTS -jar rpt-jar-with-dependencies.jar "$MAIN_CLASS" "$@"

```

The options as a one-liner for copy paste:

```bash
--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.base/sun.nio.cs=ALL-UNNAMED --add-opens=java.base/sun.security.action=ALL-UNNAMED --add-opens=java.base/sun.util.calendar=ALL-UNNAMED --add-opens=java.security.jgss/sun.security.krb5=ALL-UNNAMED
```
4 changes: 2 additions & 2 deletions docs/sparql-extensions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ layout: default
# SPARQL Extensions
RPT's SPARQL extensions are provided by our unofficial Jena eXtensions project called [JenaX](https://scaseco.github.io/jenax/).

* The section [RDF/SPARQL Processing - Examples](examples/README.html) demonstrates both the usage of the `integrate` command as well as various SPARQL extenions.
* Additional extensions are detailed at our [JenaX ARQ Plugins documentation](https://scaseco.github.io/jenax/jenax-arq-parent/jenax-arq-plugins-parent/README.html).
* The section [RDF/SPARQL Processing - Examples](../examples) demonstrates both the usage of the `integrate` command as well as various SPARQL extenions.
* The extensions can be used standalone, such as with Jena Java projects, or as plugins for a Fuseki server. For more information, see the [JenaX ARQ Plugins documentation](https://scaseco.github.io/jenax/jenax-arq-parent/jenax-arq-plugins-parent/README.html).

2 changes: 1 addition & 1 deletion docs/sparql-extensions/macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The object needs to be an `rdf:List`, where:

The following example defines a custom `eg:greet` function that returns `Hello X!` for an argument `X`.

```ttl
```turtle
# macros.ttl
PREFIX udf: <https://w3id.org/aksw/norse#udf.>
PREFIX sh: <http://www.w3.org/ns/shacl#>
Expand Down

0 comments on commit 5b62e32

Please sign in to comment.