Skip to content

Commit aa4a5f0

Browse files
committed
chore: upgrade dependencies/plugins
1 parent 720d597 commit aa4a5f0

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

library/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>com.github.spotbugs</groupId>
7070
<artifactId>spotbugs-annotations</artifactId>
71-
<version>4.4.2</version>
71+
<version>4.5.2</version>
7272
<optional>true</optional>
7373
</dependency>
7474
<dependency>
@@ -380,7 +380,7 @@
380380
<plugin>
381381
<groupId>com.github.spotbugs</groupId>
382382
<artifactId>spotbugs-maven-plugin</artifactId>
383-
<version>4.4.2.2</version>
383+
<version>4.5.0.0</version>
384384
<executions>
385385
<execution>
386386
<phase>test-compile</phase>

library/src/versions-rules.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@
2727
<ignoreVersion type="regex">2\.\d{2,}(\..*)?</ignoreVersion>
2828
</ignoreVersions>
2929
</rule>
30+
<rule groupId="commons-cli" artifactId="commons-cli">
31+
<ignoreVersions>
32+
<!-- locked to version 1.4, ignore 1.5+ -->
33+
<ignoreVersion type="regex">1\.[5-9](\..*)?</ignoreVersion>
34+
<ignoreVersion type="regex">2\.\d{2,}(\..*)?</ignoreVersion>
35+
</ignoreVersions>
36+
</rule>
3037
<rule groupId="org.jetbrains.kotlinx">
3138
<!-- ignore native dependency version like org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5-native-mt -->
3239
<ignoreVersions>

tool/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@
6464
<version>${project.version}</version>
6565
</dependency>
6666
<dependency>
67+
<!--
68+
DO NOT upgrade commons-cli version!
69+
v1.4 is the last version support Java 6
70+
-->
6771
<groupId>commons-cli</groupId>
6872
<artifactId>commons-cli</artifactId>
6973
<version>1.4</version>
@@ -88,7 +92,7 @@
8892
<dependency>
8993
<groupId>com.github.spotbugs</groupId>
9094
<artifactId>spotbugs-annotations</artifactId>
91-
<version>4.4.2</version>
95+
<version>4.5.2</version>
9296
<optional>true</optional>
9397
</dependency>
9498
<dependency>
@@ -443,7 +447,7 @@
443447
<plugin>
444448
<groupId>com.github.spotbugs</groupId>
445449
<artifactId>spotbugs-maven-plugin</artifactId>
446-
<version>4.4.2.2</version>
450+
<version>4.5.0.0</version>
447451
<executions>
448452
<execution>
449453
<phase>test-compile</phase>

0 commit comments

Comments
 (0)