Skip to content

Commit

Permalink
pom update, bumped topquadrant SHACL
Browse files Browse the repository at this point in the history
  • Loading branch information
tfrancart committed May 25, 2024
1 parent 52b8979 commit 59719d9
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 9 deletions.
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@
<!-- library versions -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<jena.version>3.17.0</jena.version>
<!-- <jena.version>4.7.0</jena.version> -->
<jena.version>4.6.1</jena.version>
<jtwig.version>5.87.0.RELEASE</jtwig.version>
<jackson.version>2.13.3</jackson.version>
</properties>
Expand Down Expand Up @@ -109,7 +108,7 @@ eclipse.preferences.version=1
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<version>1.7.36</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -152,7 +151,7 @@ eclipse.preferences.version=1
<dependency>
<groupId>org.topbraid</groupId>
<artifactId>shacl</artifactId>
<version>1.3.2</version>
<version>1.4.3</version>
<exclusions>
<exclusion>
<groupId>org.apache.jena</groupId>
Expand All @@ -171,7 +170,7 @@ eclipse.preferences.version=1
<dependency>
<groupId>net.sourceforge.plantuml</groupId>
<artifactId>plantuml</artifactId>
<version>1.2023.12</version>
<version>1.2024.4</version>
</dependency>

<!-- Jackson -->
Expand Down
2 changes: 2 additions & 0 deletions shacl-doc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.apt_generated/
/.apt_generated_tests/
2 changes: 2 additions & 0 deletions shacl-generate/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.apt_generated/
/.apt_generated_tests/
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
ASK {
?uri a $type .
?uri a $superset .
filter (?otherType != $type)
filter (?superset != $type)
}
2 changes: 2 additions & 0 deletions shacl-play-app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
/.project
/.classpath
/.settings
/.apt_generated/
/.apt_generated_tests/
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;

@Parameters(commandDescription = "Filters a shape model against a statistics file.")
@Parameters(commandDescription = "Filters a shape model against a statistics file. Properties used less than 0.1% of the time will be removed from the SHACL file.")
public class ArgumentsFilter {


Expand Down
2 changes: 2 additions & 0 deletions shacl-play/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/target
/.project
/.classpath
/.apt_generated/
/.apt_generated_tests/
33 changes: 31 additions & 2 deletions shacl-play/src/main/webapp/WEB-INF/jsp/draw-form.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,16 @@
file contains the <code>rdfs:subClassOf</code> links.
</td>
</tr>
<tr>
<th scope="row" width="30%"><code>https://shacl-play.sparna.fr/ontology#background-color</code></th>
<td>xsd:string</td>
<td class="text-break">Color of the box itself. Values can be a color name, like <code>"Green"</code> or an hex code, like <code>"4456BB"</code>
</td>
</tr>
<tr>
<th scope="row" width="30%"><code>https://shacl-play.sparna.fr/ontology#color</code></th>
<td>xsd:string</td>
<td class="text-break">Color of the box. Values can be a color name, like <code>"Green"</code>
or an hex code, like <code>"4456BB"</code>
<td class="text-break">Color of the text inside the box. Values can be a color name, like <code>"Green"</code> or an hex code, like <code>"4456BB"</code>
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -186,6 +191,30 @@
</tbody>
</table>
</div>

<div style="margin-top:2em;">
<h4 id="gallery">Diagram gallery</h4>

<p>
<a href="https://github.com/euBusinessGraph/eubg-data/raw/master/model/ebg-shapes.shacl">EBG shapes</a>
<br/>
<img src="<c:url value="/resources/img/diagram-ebg-shapes.png"/>" width="100%"/>
</p>

<p>
<a href="https://gist.githubusercontent.com/tfrancart/cd7af66ba629352f353bec49b76efb98/raw/ScoLOMFR-V6-AP-SHACL.ttl">ScoloMFR Application profile</a>, SKOS based
<br/>
<img src="<c:url value="/resources/img/diagram-ScoLOMFR-V6-AP-SHACL.png"/>" width="100%"/>
</p>

<p>
<a href="https://docs.google.com/spreadsheets/d/195NKb43Ck1yPGrIK4H8_HYGw9GTPnbtY">Sparnatural configuration profile</a>
<br/>
<img src="<c:url value="/resources/img/diagram-sparnatural-configuration.png"/>" width="100%"/>
</p>

</div>

</div>


Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 59719d9

Please sign in to comment.