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

Commit d2effcb

Browse files
Latest version for dependencies and plugins.
1 parent 732f908 commit d2effcb

4 files changed

Lines changed: 35 additions & 33 deletions

File tree

pom.xml

Lines changed: 31 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<scala.version>2.11.11</scala.version>
7070
<scala.binary.version>2.11</scala.binary.version>
7171
<spark.version>2.2.1</spark.version>
72-
<flink.version>1.3.2</flink.version>
72+
<flink.version>1.4.0</flink.version>
7373
<jena.version>3.5.0</jena.version>
7474
<sansa.stack.version>0.2.0</sansa.stack.version>
7575
<sansa.rdf.version>${sansa.stack.version}</sansa.rdf.version>
@@ -222,17 +222,17 @@
222222
<dependency>
223223
<groupId>org.jgrapht</groupId>
224224
<artifactId>jgrapht-core</artifactId>
225-
<version>1.0.1</version>
225+
<version>1.1.0</version>
226226
</dependency>
227227
<dependency>
228228
<groupId>org.jgrapht</groupId>
229229
<artifactId>jgrapht-ext</artifactId>
230-
<version>1.0.1</version>
230+
<version>1.1.0</version>
231231
</dependency>
232232
<dependency>
233233
<groupId>org.gephi</groupId>
234234
<artifactId>gephi-toolkit</artifactId>
235-
<version>0.9.1</version>
235+
<version>0.9.2</version>
236236
</dependency>
237237

238238
<!-- Apache Calcite -->
@@ -252,7 +252,19 @@
252252
<dependency>
253253
<groupId>org.scalatest</groupId>
254254
<artifactId>scalatest_${scala.binary.version}</artifactId>
255-
<version>3.0.3</version>
255+
<version>3.0.4</version>
256+
<scope>test</scope>
257+
</dependency>
258+
<dependency>
259+
<groupId>org.specs2</groupId>
260+
<artifactId>specs2-core_${scala.binary.version}</artifactId>
261+
<version>4.0.2</version>
262+
<scope>test</scope>
263+
</dependency>
264+
<dependency>
265+
<groupId>org.specs2</groupId>
266+
<artifactId>specs2-junit_${scala.binary.version}</artifactId>
267+
<version>4.0.2</version>
256268
<scope>test</scope>
257269
</dependency>
258270

@@ -281,14 +293,14 @@
281293
<dependency>
282294
<groupId>com.github.scopt</groupId>
283295
<artifactId>scopt_${scala.binary.version}</artifactId>
284-
<version>3.6.0</version>
296+
<version>3.7.0</version>
285297
</dependency>
286298

287299
<!-- Config API -->
288300
<dependency>
289301
<groupId>com.typesafe</groupId>
290302
<artifactId>config</artifactId>
291-
<version>1.3.1</version>
303+
<version>1.3.2</version>
292304
</dependency>
293305

294306

@@ -311,7 +323,7 @@
311323
<plugin>
312324
<groupId>net.alchim31.maven</groupId>
313325
<artifactId>scala-maven-plugin</artifactId>
314-
<version>3.2.2</version>
326+
<version>3.3.1</version>
315327
<executions>
316328
<execution>
317329
<goals>
@@ -357,7 +369,7 @@
357369

358370
<plugin>
359371
<artifactId>maven-compiler-plugin</artifactId>
360-
<version>3.6.1</version>
372+
<version>3.7.0</version>
361373
<configuration>
362374
<source>${maven.compiler.source}</source>
363375
<target>${maven.compiler.target}</target>
@@ -369,14 +381,14 @@
369381
<plugin>
370382
<groupId>org.apache.maven.plugins</groupId>
371383
<artifactId>maven-surefire-plugin</artifactId>
372-
<version>2.20</version>
384+
<version>2.20.1</version>
373385
</plugin>
374386

375387
<!-- Scalatest -->
376388
<plugin>
377389
<groupId>org.scalatest</groupId>
378390
<artifactId>scalatest-maven-plugin</artifactId>
379-
<version>1.0</version>
391+
<version>2.0.0</version>
380392
<configuration>
381393
<tagsToExclude>net.sansa_stack.test.conformance.IntegrationTestSuite</tagsToExclude>
382394
</configuration>
@@ -386,7 +398,7 @@
386398
<plugin>
387399
<groupId>com.amashchenko.maven.plugin</groupId>
388400
<artifactId>gitflow-maven-plugin</artifactId>
389-
<version>1.5.0</version>
401+
<version>1.8.0</version>
390402

391403
<configuration>
392404
<installProject>false</installProject>
@@ -408,13 +420,13 @@
408420
<plugin>
409421
<groupId>org.codehaus.mojo</groupId>
410422
<artifactId>versions-maven-plugin</artifactId>
411-
<version>2.4</version>
423+
<version>2.5</version>
412424
</plugin>
413425

414426
<plugin>
415427
<groupId>org.apache.maven.plugins</groupId>
416428
<artifactId>maven-enforcer-plugin</artifactId>
417-
<version>1.4.1</version>
429+
<version>3.0.0-M1</version>
418430
<executions>
419431
<execution>
420432
<id>enforce-versions</id>
@@ -471,7 +483,7 @@
471483
<plugin>
472484
<groupId>com.versioneye</groupId>
473485
<artifactId>versioneye-maven-plugin</artifactId>
474-
<version>3.11.2</version>
486+
<version>3.11.4</version>
475487
</plugin>
476488

477489
<plugin>
@@ -483,19 +495,13 @@
483495
<plugin>
484496
<groupId>org.apache.maven.plugins</groupId>
485497
<artifactId>maven-javadoc-plugin</artifactId>
486-
<version>2.10.4</version>
498+
<version>3.0.0-M1</version>
487499
</plugin>
488500

489501
<plugin>
490502
<groupId>org.apache.maven.plugins</groupId>
491503
<artifactId>maven-shade-plugin</artifactId>
492-
<version>3.0.0</version>
493-
</plugin>
494-
495-
<plugin>
496-
<groupId>org.apache.maven.plugins</groupId>
497-
<artifactId>maven-surefire-plugin</artifactId>
498-
<version>2.20</version>
504+
<version>3.1.0</version>
499505
</plugin>
500506

501507
<plugin>
@@ -505,12 +511,12 @@
505511

506512
<plugin>
507513
<artifactId>maven-assembly-plugin</artifactId>
508-
<version>3.0.0</version>
514+
<version>3.1.0</version>
509515
</plugin>
510516

511517
<plugin>
512518
<artifactId>maven-dependency-plugin</artifactId>
513-
<version>3.0.1</version>
519+
<version>3.0.2</version>
514520
</plugin>
515521

516522
</plugins>

sansa-inference-common/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<dependency>
3232
<groupId>org.apache.jena</groupId>
3333
<artifactId>jena-tdb</artifactId>
34-
<version>3.3.0</version>
34+
<version>3.5.0</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.apache.jena</groupId>
3838
<artifactId>jena-cmds</artifactId>
39-
<version>3.3.0</version>
39+
<version>3.5.0</version>
4040
</dependency>
4141

4242
<!-- Graph API -->
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>com.google.protobuf</groupId>
8383
<artifactId>protobuf-java</artifactId>
84-
<version>3.3.1</version>
84+
<version>3.5.0</version>
8585
</dependency>
8686

8787

sansa-inference-spark/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<groupId>com.holdenkarau</groupId>
147147
<artifactId>spark-testing-base_${scala.binary.version}</artifactId>
148148
<!--version>${spark.version}_0.7.1</version-->
149-
<version>2.1.0_0.6.0</version>
149+
<version>2.2.0_0.8.0</version>
150150
<scope>test</scope>
151151
</dependency>
152152
<dependency>
@@ -160,13 +160,11 @@
160160
<dependency>
161161
<groupId>org.specs2</groupId>
162162
<artifactId>specs2-core_${scala.binary.version}</artifactId>
163-
<version>2.4.16</version>
164163
<scope>test</scope>
165164
</dependency>
166165
<dependency>
167166
<groupId>org.specs2</groupId>
168167
<artifactId>specs2-junit_${scala.binary.version}</artifactId>
169-
<version>2.4.16</version>
170168
<scope>test</scope>
171169
</dependency>
172170
<!--<dependency>-->

sansa-inference-tests/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,11 @@
4343
<dependency>
4444
<groupId>org.specs2</groupId>
4545
<artifactId>specs2-core_${scala.binary.version}</artifactId>
46-
<version>2.4.16</version>
4746
<scope>test</scope>
4847
</dependency>
4948
<dependency>
5049
<groupId>org.specs2</groupId>
5150
<artifactId>specs2-junit_${scala.binary.version}</artifactId>
52-
<version>2.4.16</version>
5351
<scope>test</scope>
5452
</dependency>
5553
<dependency>

0 commit comments

Comments
 (0)