Skip to content

Commit 42e7d00

Browse files
Bumped dependencies and plugins.
1 parent d2c97b0 commit 42e7d00

3 files changed

Lines changed: 70 additions & 51 deletions

File tree

components-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@
469469
<dependency>
470470
<groupId>com.thoughtworks.xstream</groupId>
471471
<artifactId>xstream</artifactId>
472-
<version>1.4.11.1</version>
472+
<version>1.4.13</version>
473473
<exclusions>
474474
<exclusion>
475475
<groupId>xpp3</groupId>
@@ -604,7 +604,7 @@
604604
<dependency>
605605
<groupId>org.reflections</groupId>
606606
<artifactId>reflections</artifactId>
607-
<version>0.9.11</version>
607+
<version>0.9.12</version>
608608
</dependency>
609609

610610
<dependency>

components-ext/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@
9999
<dependency>
100100
<groupId>edu.stanford.nlp</groupId>
101101
<artifactId>stanford-corenlp</artifactId>
102-
<version>3.9.2</version>
103102
</dependency>
104103

105104
<!--

pom.xml

Lines changed: 68 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
<compiler.version>1.8</compiler.version>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<!--Define the AKSW dependency version -->
17-
<slf4j.version>1.7.28</slf4j.version>
17+
<slf4j.version>1.7.30</slf4j.version>
1818
<log4j.version>2.13.3</log4j.version>
19-
<solr.version>8.2.0</solr.version>
20-
<owlapi.version>4.5.13</owlapi.version>
21-
<spring.version>4.3.25.RELEASE</spring.version>
19+
<solr.version>8.6.3</solr.version>
20+
<owlapi.version>4.5.17</owlapi.version>
21+
<spring.version>4.3.29.RELEASE</spring.version>
2222
<jena.sparql.api.version>3.16.0-1</jena.sparql.api.version>
2323
<jena.version>3.16.0</jena.version>
2424
<pellet.version>2.5.2-dllearner</pellet.version>
@@ -34,7 +34,7 @@
3434
</modules>
3535

3636
<prerequisites>
37-
<maven>3.0</maven>
37+
<maven>3.3.9</maven>
3838
</prerequisites>
3939

4040

@@ -125,13 +125,13 @@
125125
<configuration>
126126
<useSystemClassLoader>false</useSystemClassLoader>
127127
</configuration>
128-
<version>2.22.0</version>
128+
<version>2.22.1</version>
129129
</plugin>
130130
<!--Maven Compiler Plugin -->
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-compiler-plugin</artifactId>
134-
<version>3.7.0</version>
134+
<version>3.8.1</version>
135135
<configuration>
136136
<source>${compiler.version}</source>
137137
<target>${compiler.version}</target>
@@ -148,7 +148,7 @@
148148
<plugin>
149149
<groupId>org.apache.maven.plugins</groupId>
150150
<artifactId>maven-jar-plugin</artifactId>
151-
<version>3.1.0</version>
151+
<version>3.2.0</version>
152152
</plugin>
153153
<plugin>
154154
<groupId>org.apache.maven.plugins</groupId>
@@ -178,12 +178,12 @@
178178
<plugin>
179179
<groupId>org.apache.maven.plugins</groupId>
180180
<artifactId>maven-source-plugin</artifactId>
181-
<version>3.0.1</version>
181+
<version>3.2.1</version>
182182
</plugin>
183183
<plugin>
184184
<groupId>org.apache.maven.plugins</groupId>
185185
<artifactId>maven-javadoc-plugin</artifactId>
186-
<version>3.1.1</version>
186+
<version>3.2.0</version>
187187
<configuration>
188188
<source>${compiler.version}</source>
189189
<failOnError>false</failOnError>
@@ -222,7 +222,7 @@
222222
<plugin>
223223
<groupId>org.codehaus.mojo</groupId>
224224
<artifactId>license-maven-plugin</artifactId>
225-
<version>1.17</version>
225+
<version>1.19</version>
226226
</plugin>
227227
<plugin>
228228
<groupId>org.apache.tomcat.maven</groupId>
@@ -247,7 +247,7 @@
247247
<plugin>
248248
<groupId>org.apache.maven.plugins</groupId>
249249
<artifactId>maven-release-plugin</artifactId>
250-
<version>2.5.3</version>
250+
<version>3.0.0-M1</version>
251251
<configuration>
252252
<autoVersionSubmodules>true</autoVersionSubmodules>
253253
</configuration>
@@ -258,7 +258,7 @@
258258
<plugin>
259259
<groupId>com.amashchenko.maven.plugin</groupId>
260260
<artifactId>gitflow-maven-plugin</artifactId>
261-
<version>1.13.0</version>
261+
<version>1.14.0</version>
262262
<configuration>
263263
<installProject>false</installProject>
264264
<verbose>true</verbose>
@@ -277,15 +277,15 @@
277277
<plugin>
278278
<groupId>org.apache.maven.plugins</groupId>
279279
<artifactId>maven-site-plugin</artifactId>
280-
<version>3.7.1</version>
280+
<version>3.8.2</version>
281281
<configuration>
282282
<!--<skipDeploy>true</skipDeploy> -->
283283
</configuration>
284284
<dependencies>
285285
<dependency><!-- add support for ssh/scp -->
286286
<groupId>org.apache.maven.wagon</groupId>
287287
<artifactId>wagon-ssh</artifactId>
288-
<version>2.10</version>
288+
<version>3.4.0</version>
289289
</dependency>
290290
</dependencies>
291291
</plugin>
@@ -343,7 +343,7 @@
343343
</plugin>
344344
<plugin>
345345
<artifactId>maven-assembly-plugin</artifactId>
346-
<version>3.1.0</version>
346+
<version>3.1.1</version>
347347
<executions>
348348
<execution>
349349
<phase>package</phase>
@@ -475,6 +475,20 @@
475475
</exceptions>
476476
</configuration>
477477
</plugin>
478+
<plugin>
479+
<groupId>com.github.spotbugs</groupId>
480+
<artifactId>spotbugs-maven-plugin</artifactId>
481+
<version>4.1.3</version>
482+
<dependencies>
483+
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs -->
484+
<dependency>
485+
<groupId>com.github.spotbugs</groupId>
486+
<artifactId>spotbugs</artifactId>
487+
<version>4.1.3</version>
488+
</dependency>
489+
</dependencies>
490+
</plugin>
491+
478492
</plugins>
479493
</pluginManagement>
480494
<!--<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId>
@@ -490,19 +504,15 @@
490504
<plugin>
491505
<groupId>org.basepom.maven</groupId>
492506
<artifactId>duplicate-finder-maven-plugin</artifactId>
493-
<version>1.3.0</version>
507+
<version>1.4.0</version>
508+
</plugin>
509+
<plugin>
510+
<groupId>com.github.spotbugs</groupId>
511+
<artifactId>spotbugs-maven-plugin</artifactId>
494512
</plugin>
495513
</plugins>
496514
</build>
497515

498-
<dependencies>
499-
<dependency>
500-
<groupId>com.google.code.findbugs</groupId>
501-
<artifactId>jsr305</artifactId>
502-
<version>3.0.2</version>
503-
</dependency>
504-
</dependencies>
505-
506516
<dependencyManagement>
507517
<!-- - Dependency Management defines the dependencies at the parent level
508518
- These set the dependencies on a global level and the children are forced
@@ -637,7 +647,7 @@
637647
<dependency>
638648
<groupId>net.sourceforge.owlapi</groupId>
639649
<artifactId>org.semanticweb.hermit</artifactId>
640-
<version>1.4.3.456</version>
650+
<version>1.4.5.456</version>
641651
</dependency>
642652
<!-- Fact++ -->
643653
<dependency>
@@ -695,7 +705,7 @@
695705
<dependency>
696706
<groupId>org.json</groupId>
697707
<artifactId>json</artifactId>
698-
<version>20190722</version>
708+
<version>20200518</version>
699709
</dependency>
700710

701711
<!--Used in NKE interfaces for now -->
@@ -728,19 +738,19 @@
728738
<dependency>
729739
<groupId>com.jamonapi</groupId>
730740
<artifactId>jamon</artifactId>
731-
<version>2.81</version>
741+
<version>2.82</version>
732742
</dependency>
733743

734744
<!-- Apache Commons libs -->
735745
<dependency>
736746
<groupId>org.apache.commons</groupId>
737747
<artifactId>commons-pool2</artifactId>
738-
<version>2.7.0</version>
748+
<version>2.9.0</version>
739749
</dependency>
740750
<dependency>
741751
<groupId>org.apache.commons</groupId>
742752
<artifactId>commons-compress</artifactId>
743-
<version>1.19</version>
753+
<version>1.20</version>
744754
</dependency>
745755
<dependency>
746756
<groupId>org.apache.commons</groupId>
@@ -755,7 +765,7 @@
755765
<dependency>
756766
<groupId>org.apache.commons</groupId>
757767
<artifactId>commons-lang3</artifactId>
758-
<version>3.9</version>
768+
<version>3.11</version>
759769
</dependency>
760770

761771
<!-- Jena SPARQL API -->
@@ -796,32 +806,32 @@
796806
<dependency>
797807
<groupId>com.h2database</groupId>
798808
<artifactId>h2</artifactId>
799-
<version>1.4.199</version>
809+
<version>1.4.200</version>
800810
</dependency>
801811

802812
<dependency>
803813
<groupId>mysql</groupId>
804814
<artifactId>mysql-connector-java</artifactId>
805-
<version>8.0.17</version>
815+
<version>8.0.21</version>
806816
</dependency>
807817

808818
<dependency>
809819
<groupId>org.postgresql</groupId>
810820
<artifactId>postgresql</artifactId>
811-
<version>42.2.6</version>
821+
<version>42.2.17</version>
812822
</dependency>
813823

814824

815825
<dependency>
816826
<groupId>nz.ac.waikato.cms.weka</groupId>
817827
<artifactId>weka-dev</artifactId>
818-
<version>3.9.3</version>
828+
<version>3.9.4</version>
819829
</dependency>
820830

821831
<dependency>
822832
<groupId>com.google.guava</groupId>
823833
<artifactId>guava</artifactId>
824-
<version>28.1-jre</version>
834+
<version>29.0-jre</version>
825835
</dependency>
826836
<dependency>
827837
<groupId>com.dumontierlab</groupId>
@@ -949,7 +959,7 @@
949959
<dependency>
950960
<groupId>joda-time</groupId>
951961
<artifactId>joda-time</artifactId>
952-
<version>2.10.3</version>
962+
<version>2.10.6</version>
953963
</dependency>
954964
<dependency>
955965
<groupId>edu.berkeley.compbio</groupId>
@@ -1006,6 +1016,12 @@
10061016
<version>1.1</version>
10071017
</dependency>
10081018

1019+
<dependency>
1020+
<groupId>edu.stanford.nlp</groupId>
1021+
<artifactId>stanford-corenlp</artifactId>
1022+
<version>4.0.0</version>
1023+
</dependency>
1024+
10091025
</dependencies>
10101026
</dependencyManagement>
10111027

@@ -1065,18 +1081,23 @@
10651081
<plugin>
10661082
<groupId>org.apache.maven.plugins</groupId>
10671083
<artifactId>maven-javadoc-plugin</artifactId>
1084+
<reportSets>
1085+
<reportSet>
1086+
<id>aggregate</id>
1087+
<inherited>false</inherited>
1088+
<reports>
1089+
<report>aggregate</report>
1090+
</reports>
1091+
</reportSet>
1092+
<reportSet>
1093+
<id>default</id>
1094+
<reports>
1095+
<report>javadoc</report>
1096+
</reports>
1097+
</reportSet>
1098+
</reportSets>
10681099
<configuration>
10691100
<show>public</show>
1070-
<aggregate>true</aggregate>
1071-
<reportSets>
1072-
<reportSet>
1073-
<id>aggregate</id>
1074-
<inherited>false</inherited>
1075-
<reports>
1076-
<report>aggregate</report>
1077-
</reports>
1078-
</reportSet>
1079-
</reportSets>
10801101
<links>
10811102
<link>https://docs.oracle.com/javase/8/docs/api/</link>
10821103
</links>
@@ -1117,7 +1138,6 @@
11171138
<plugin>
11181139
<groupId>org.apache.maven.plugins</groupId>
11191140
<artifactId>maven-changes-plugin</artifactId>
1120-
<version>2.12.1</version>
11211141
<reportSets>
11221142
<reportSet>
11231143
<reports>

0 commit comments

Comments
 (0)