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

Commit 3acc3ed

Browse files
committed
fixed version properties to use a snapshot version of the query layer with release versions of other layers
1 parent ba23bbc commit 3acc3ed

2 files changed

Lines changed: 22 additions & 54 deletions

File tree

pom.xml

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<maven.compiler.target>1.8</maven.compiler.target>
2727
<encoding>UTF-8</encoding>
2828

29-
<sansa.version>0.2.0</sansa.version>
29+
<sansa.version>0.3.0</sansa.version>
3030

3131
<scala.version>2.11.11</scala.version>
3232
<scala.binary.version>2.11</scala.binary.version>
@@ -248,14 +248,6 @@
248248
<version>${scala.version}</version>
249249
</dependency>
250250

251-
<dependency>
252-
<groupId>net.sansa-stack</groupId>
253-
<artifactId>sansa-rdf-test-resources${scala.version.suffix}</artifactId>
254-
<version>${project.version}</version>
255-
<!-- <classifier>${scala.compat.version}</classifier> -->
256-
</dependency>
257-
258-
259251
<dependency>
260252
<groupId>org.aksw.bsbm</groupId>
261253
<artifactId>bsbm-jsa</artifactId>
@@ -299,8 +291,19 @@
299291
<dependency>
300292
<groupId>net.sansa-stack</groupId>
301293
<artifactId>sansa-rdf-common-partition${scala.version.suffix}</artifactId>
302-
<version>${project.version}</version>
303-
<!-- <classifier>${scala.compat.version}</classifier> -->
294+
<version>${sansa.version}</version>
295+
</dependency>
296+
297+
<dependency>
298+
<groupId>net.sansa-stack</groupId>
299+
<artifactId>sansa-rdf-test-resources${scala.version.suffix}</artifactId>
300+
<version>${sansa.version}</version>
301+
</dependency>
302+
303+
<dependency>
304+
<groupId>${project.groupId}</groupId>
305+
<artifactId>sansa-rdf-partition-sparqlify${scala.version.suffix}</artifactId>
306+
<version>${sansa.version}</version>
304307
</dependency>
305308

306309

@@ -309,16 +312,9 @@
309312
<artifactId>jena-sparql-api-server-standalone</artifactId>
310313
<version>${jsa.version}</version>
311314
<exclusions>
312-
<!--
313-
<exclusion>
314-
<groupId>xml-apis</groupId>
315-
<artifactId>xml-apis</artifactId>
316-
</exclusion>
317-
<exclusion>
318-
<groupId>org.eclipse.jetty</groupId>
319-
<artifactId>jetty-xml</artifactId>
320-
</exclusion>
321-
-->
315+
<!-- <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId>
316+
</exclusion> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-xml</artifactId>
317+
</exclusion> -->
322318

323319
</exclusions>
324320
<!-- <classifier>${scala.compat.version}</classifier> -->
@@ -573,7 +569,7 @@
573569
</execution>
574570
</executions>
575571
</plugin>
576-
572+
577573
<plugin>
578574
<groupId>org.sonatype.plugins</groupId>
579575
<artifactId>nexus-staging-maven-plugin</artifactId>

sansa-query-spark-parent/pom.xml

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -20,37 +20,29 @@
2020

2121
<dependencyManagement>
2222
<dependencies>
23-
24-
25-
2623

2724
<dependency>
2825
<groupId>${project.groupId}</groupId>
2926
<artifactId>sansa-rdf-spark-utils${scala.version.suffix}</artifactId>
30-
<version>${project.version}</version>
31-
<!-- <classifier>${scala.classifier}</classifier> -->
27+
<version>${sansa.version}</version>
3228
</dependency>
3329

3430
<dependency>
3531
<groupId>${project.groupId}</groupId>
3632
<artifactId>sansa-rdf-spark-core${scala.version.suffix}</artifactId>
37-
<version>${project.version}</version>
38-
<!-- <classifier>${scala.classifier}</classifier> -->
33+
<version>${sansa.version}</version>
3934
</dependency>
4035

4136
<dependency>
4237
<groupId>${project.groupId}</groupId>
4338
<artifactId>sansa-rdf-kryo-sparqlify${scala.version.suffix}</artifactId>
44-
<version>${project.version}</version>
45-
<!-- <classifier>${scala.classifier}</classifier> -->
39+
<version>${sansa.version}</version>
4640
</dependency>
4741

48-
4942
<dependency>
5043
<groupId>${project.groupId}</groupId>
5144
<artifactId>sansa-rdf-partition-sparqlify${scala.version.suffix}</artifactId>
52-
<version>${project.version}</version>
53-
<!-- <classifier>${scala.classifier}</classifier> -->
45+
<version>${sansa.version}</version>
5446
</dependency>
5547

5648
<dependency>
@@ -86,26 +78,6 @@
8678
</dependency>
8779

8880

89-
<!-- Use jena's http client dependencies instead those of spark -->
90-
<!-- <dependency> -->
91-
<!-- <groupId>org.apache.httpcomponents</groupId> -->
92-
<!-- <artifactId>httpcore</artifactId> -->
93-
<!-- <scope>provided</scope> -->
94-
<!-- </dependency> -->
95-
96-
<!-- <dependency> -->
97-
<!-- <groupId>commons-httpclient</groupId> -->
98-
<!-- <artifactId>commons-httpclient</artifactId> -->
99-
<!-- <scope>provided</scope> -->
100-
<!-- </dependency> -->
101-
102-
103-
<!-- <dependency> -->
104-
<!-- <groupId>org.scalatest</groupId> -->
105-
<!-- <artifactId>scalatest_${scala.binary.version}</artifactId> -->
106-
<!-- <version>3.0.3</version> -->
107-
<!-- </dependency> -->
108-
10981
</dependencies>
11082
</dependencyManagement>
11183
</project>

0 commit comments

Comments
 (0)