Skip to content

Commit

Permalink
Merge branch 'develop' into feature/github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
j-l-s committed Sep 11, 2024
2 parents 8416c37 + 38e4b5e commit 662a90f
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 14 deletions.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
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>

<name>corese-core</name>
<groupId>fr.inria.corese</groupId>
<artifactId>corese-core</artifactId>
<version>4.5.1</version>

<name>corese-core</name>

<properties>
<maven.test.skip>false</maven.test.skip>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.inria.corese.shex.shacl;
package fr.inria.corese.core.shex.shacl;

/**
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fr/inria/corese/core/shex/shacl/Context.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.inria.corese.shex.shacl;
package fr.inria.corese.core.shex.shacl;

import fr.inria.lille.shexjava.schema.abstrsynt.NodeConstraint;
import fr.inria.lille.shexjava.schema.abstrsynt.OneOf;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.inria.corese.shex.shacl;
package fr.inria.corese.core.shex.shacl;

import fr.inria.lille.shexjava.schema.abstrsynt.AbstractNaryShapeExpr;
import fr.inria.lille.shexjava.schema.abstrsynt.AbstractNaryTripleExpr;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fr/inria/corese/core/shex/shacl/Shex.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.inria.corese.shex.shacl;
package fr.inria.corese.core.shex.shacl;

import fr.inria.corese.core.sparql.triple.parser.NSManager;
import fr.inria.lille.shexjava.graph.TCProperty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.inria.corese.shex.shacl;
package fr.inria.corese.core.shex.shacl;

import fr.inria.lille.shexjava.schema.concrsynt.*;
import java.math.BigDecimal;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/fr/inria/corese/core/shex/shacl/ShexShacl.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package fr.inria.corese.shex.shacl;
package fr.inria.corese.core.shex.shacl;

import static fr.inria.corese.shex.shacl.Constant.SH_INVERSEPATH;
import static fr.inria.corese.core.shex.shacl.Constant.SH_INVERSEPATH;
import fr.inria.corese.core.sparql.triple.parser.NSManager;
import fr.inria.lille.shexjava.schema.concrsynt.LanguageConstraint;
import java.math.BigDecimal;
Expand Down
6 changes: 1 addition & 5 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,14 @@
exports fr.inria.corese.core.storage;
exports fr.inria.corese.core.storage.api.dataManager;

// exports fr.inria.corese.core.compiler;
exports fr.inria.corese.core.compiler.parser;
exports fr.inria.corese.core.compiler.eval;
exports fr.inria.corese.core.compiler.api;
exports fr.inria.corese.core.compiler.result;
exports fr.inria.corese.core.compiler.federate;

// exports fr.inria.corese.core.shex;
// exports fr.inria.corese.core.shex.shacl;
exports fr.inria.corese.core.shex.shacl;

// exports fr.inria.corese.core.kgram;
exports fr.inria.corese.core.kgram.core;
exports fr.inria.corese.core.kgram.api.core;
exports fr.inria.corese.core.kgram.api.query;
Expand All @@ -61,7 +58,6 @@
exports fr.inria.corese.core.kgram.path;
exports fr.inria.corese.core.kgram.sorter.impl.qpv1;

// exports fr.inria.corese.core.sparql;
exports fr.inria.corese.core.sparql.triple.parser;
exports fr.inria.corese.core.sparql.triple.parser.visitor;
exports fr.inria.corese.core.sparql.triple.parser.context;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/fr/inria/corese/test/shex/TestShex.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package fr.inria.corese.test.shex;

import fr.inria.corese.shex.shacl.Shex;
import fr.inria.corese.core.shex.shacl.Shex;


/**
Expand Down

0 comments on commit 662a90f

Please sign in to comment.