Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit 24d641b

Browse files
Merge branch 'develop' into feature/flink-jena
2 parents 44067c4 + 3aaadc2 commit 24d641b

5 files changed

Lines changed: 26 additions & 15 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.sansa-stack</groupId>
55
<artifactId>sansa-inference-parent_2.11</artifactId>
6-
<version>0.3.1-SNAPSHOT</version>
6+
<version>0.4.1-SNAPSHOT</version>
77
<packaging>pom</packaging>
88
<name>Inference API - Parent</name>
99

@@ -71,7 +71,7 @@
7171
<spark.version>2.3.1</spark.version>
7272
<flink.version>1.5.0</flink.version>
7373
<jena.version>3.7.0</jena.version>
74-
<sansa.stack.version>0.3.1-SNAPSHOT</sansa.stack.version>
74+
<sansa.stack.version>0.4.0</sansa.stack.version>
7575
<sansa.rdf.version>${sansa.stack.version}</sansa.rdf.version>
7676
<sansa.query.version>${sansa.stack.version}</sansa.query.version>
7777
<sansa.owl.version>${sansa.stack.version}</sansa.owl.version>

sansa-inference-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<artifactId>sansa-inference-parent_2.11</artifactId>
66
<groupId>net.sansa-stack</groupId>
7-
<version>0.3.1-SNAPSHOT</version>
7+
<version>0.4.1-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<groupId>net.sansa-stack</groupId>
1111
<artifactId>sansa-inference-common_${scala.binary.version}</artifactId>
12-
<version>0.3.1-SNAPSHOT</version>
12+
<version>0.4.1-SNAPSHOT</version>
1313
<name>Inference API - Common</name>
1414
<description>A set of common objects used in the Inference API</description>
1515

sansa-inference-flink/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ under the License.
2323
<parent>
2424
<groupId>net.sansa-stack</groupId>
2525
<artifactId>sansa-inference-parent_2.11</artifactId>
26-
<version>0.3.1-SNAPSHOT</version>
26+
<version>0.4.1-SNAPSHOT</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929
<groupId>net.sansa-stack</groupId>
3030
<artifactId>sansa-inference-flink_${scala.binary.version}</artifactId>
31-
<version>0.3.1-SNAPSHOT</version>
31+
<version>0.4.1-SNAPSHOT</version>
3232

3333
<name>Inference API - Flink</name>
3434
<description>Apache Flink based inference layer for RDF and OWL</description>

sansa-inference-spark/pom.xml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>net.sansa-stack</groupId>
66
<artifactId>sansa-inference-parent_2.11</artifactId>
7-
<version>0.3.1-SNAPSHOT</version>
7+
<version>0.4.1-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<groupId>net.sansa-stack</groupId>
1111
<artifactId>sansa-inference-spark_${scala.binary.version}</artifactId>
12-
<version>0.3.1-SNAPSHOT</version>
12+
<version>0.4.1-SNAPSHOT</version>
1313

1414
<name>Inference API - Spark</name>
1515
<description>Apache Spark based inference layer for RDF and OWL</description>
@@ -45,6 +45,10 @@
4545
<groupId>org.apache.hadoop</groupId>
4646
<artifactId>hadoop-mapreduce-client-core</artifactId>
4747
</exclusion>
48+
<exclusion>
49+
<groupId>org.aksw.sparqlify</groupId>
50+
<artifactId>sparqlify-core</artifactId>
51+
</exclusion>
4852
</exclusions>
4953
</dependency>
5054
<!--<dependency>-->
@@ -150,11 +154,6 @@
150154
<groupId>junit</groupId>
151155
<artifactId>junit</artifactId>
152156
</dependency>
153-
<dependency>
154-
<groupId>org.scalatest</groupId>
155-
<artifactId>scalatest_${scala.binary.version}</artifactId>
156-
<scope>test</scope>
157-
</dependency>
158157
<dependency>
159158
<groupId>com.holdenkarau</groupId>
160159
<artifactId>spark-testing-base_${scala.binary.version}</artifactId>
@@ -500,6 +499,18 @@
500499
<include>**</include>
501500
</includes>
502501
</filter>
502+
<filter>
503+
<artifact>xerces:xercesImpl</artifact>
504+
<includes>
505+
<include>**</include>
506+
</includes>
507+
</filter>
508+
<filter>
509+
<artifact>org.aksw.jena-sparql-api:*</artifact>
510+
<includes>
511+
<include>**</include>
512+
</includes>
513+
</filter>
503514
</filters>
504515
<finalName>dist-${project.artifactId}-${project.version}</finalName>
505516
<transformers>

sansa-inference-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<artifactId>sansa-inference-parent_2.11</artifactId>
66
<groupId>net.sansa-stack</groupId>
7-
<version>0.3.1-SNAPSHOT</version>
7+
<version>0.4.1-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<groupId>net.sansa-stack</groupId>
1111
<artifactId>sansa-inference-tests_${scala.binary.version}</artifactId>
12-
<version>0.3.1-SNAPSHOT</version>
12+
<version>0.4.1-SNAPSHOT</version>
1313
<name>Inference API - Tests</name>
1414
<description>Contains common data and utils for inference API testing</description>
1515

0 commit comments

Comments
 (0)