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

Commit e7b81ad

Browse files
Merge branch 'release/0.2.0' into develop
2 parents d370c9e + 68a7e6e commit e7b81ad

5 files changed

Lines changed: 24 additions & 14 deletions

File tree

pom.xml

Lines changed: 12 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.1.1-SNAPSHOT</version>
6+
<version>0.2.0</version>
77
<packaging>pom</packaging>
88
<name>Inference API - Parent</name>
99

@@ -71,7 +71,7 @@
7171
<spark.version>2.1.1</spark.version>
7272
<flink.version>1.3.0</flink.version>
7373
<jena.version>3.1.1</jena.version>
74-
<sansa.stack.version>0.1.0-SNAPSHOT</sansa.stack.version>
74+
<sansa.stack.version>0.2.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>
@@ -80,6 +80,7 @@
8080
<PermGen>64m</PermGen>
8181
<MaxPermGen>512m</MaxPermGen>
8282
<CodeCacheSize>512m</CodeCacheSize>
83+
<gpg.keyname>AKSW</gpg.keyname>
8384
</properties>
8485

8586
<prerequisites>
@@ -461,6 +462,12 @@
461462
<artifactId>maven-assembly-plugin</artifactId>
462463
<version>3.0.0</version>
463464
</plugin>
465+
466+
<plugin>
467+
<artifactId>maven-dependency-plugin</artifactId>
468+
<version>3.0.1</version>
469+
</plugin>
470+
464471
</plugins>
465472
</pluginManagement>
466473

@@ -646,6 +653,8 @@
646653
<arg>-feature</arg>
647654
<arg>-dependencyfile</arg>
648655
<arg>${project.build.directory}/.scala_dependencies</arg>
656+
<arg>-Xmax-classfile-name</arg>
657+
<arg>128</arg>
649658
</args>
650659
<jvmArgs>
651660
<jvmArg>-Xms1024m</jvmArg>
@@ -737,4 +746,5 @@
737746
</profiles>
738747

739748

749+
740750
</project>

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.1.1-SNAPSHOT</version>
7+
<version>0.2.0</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.1.1-SNAPSHOT</version>
12+
<version>0.2.0</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.1.1-SNAPSHOT</version>
26+
<version>0.2.0</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.1.1-SNAPSHOT</version>
31+
<version>0.2.0</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: 6 additions & 6 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.1.1-SNAPSHOT</version>
7+
<version>0.2.0</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.1.1-SNAPSHOT</version>
12+
<version>0.2.0</version>
1313

1414
<name>Inference API - Spark</name>
1515
<description>Apache Spark based inference layer for RDF and OWL</description>
@@ -182,7 +182,7 @@
182182
<configuration>
183183
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
184184
<junitxml>.</junitxml>
185-
<filereports>WDF TestSuite.txt</filereports>
185+
<filereports>SANSA-TestSuite.txt</filereports>
186186
</configuration>
187187
<executions>
188188
<execution>
@@ -229,19 +229,19 @@
229229
<plugin>
230230
<groupId>org.apache.maven.plugins</groupId>
231231
<artifactId>maven-dependency-plugin</artifactId>
232-
<version>2.2</version>
232+
<!--<version>3.0.1</version>-->
233233
<executions>
234234
<execution>
235235
<id>unpack</id>
236-
<phase>generate-resources</phase>
236+
<phase>package</phase>
237237
<goals>
238238
<goal>unpack-dependencies</goal>
239239
</goals>
240240
<configuration>
241241
<includeGroupIds>${project.groupId}</includeGroupIds>
242242
<includeArtifactIds>sansa-inference-tests_${scala.binary.version}</includeArtifactIds>
243243
<excludeTransitive>true</excludeTransitive>
244-
<overWrite>true</overWrite>
244+
<overWriteIfNewer>true</overWriteIfNewer>
245245
<outputDirectory>${project.build.directory}/core-resources</outputDirectory>
246246
<excludes>org/**,META-INF/**,rebel.xml</excludes>
247247
<overWriteReleases>true</overWriteReleases>

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.1.1-SNAPSHOT</version>
7+
<version>0.2.0</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.1.1-SNAPSHOT</version>
12+
<version>0.2.0</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)