Skip to content

Commit 073bb31

Browse files
committed
Replace spotbugs-annotations with jsr305
Remove spotbugs-annotations dependency (only used for @SuppressFBWarnings which was removed). Keep jsr305 for javax.annotation.Nullable used in 7 files.
1 parent 5368edb commit 073bb31

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@
5858
<artifactId>slf4j-api</artifactId>
5959
<version>2.0.17</version>
6060
</dependency>
61-
<dependency>
62-
<groupId>com.github.spotbugs</groupId>
63-
<artifactId>spotbugs-annotations</artifactId>
64-
<version>4.9.8</version>
65-
</dependency>
6661
<dependency>
6762
<groupId>com.google.errorprone</groupId>
6863
<artifactId>error_prone_annotations</artifactId>
6964
<version>2.48.0</version>
7065
</dependency>
66+
<dependency>
67+
<groupId>com.google.code.findbugs</groupId>
68+
<artifactId>jsr305</artifactId>
69+
<version>3.0.2</version>
70+
</dependency>
7171
<dependency>
7272
<groupId>com.google.guava</groupId>
7373
<artifactId>guava</artifactId>
@@ -140,13 +140,13 @@
140140
<artifactId>slf4j-api</artifactId>
141141
</dependency>
142142
<dependency>
143-
<groupId>com.github.spotbugs</groupId>
144-
<artifactId>spotbugs-annotations</artifactId>
143+
<groupId>com.google.errorprone</groupId>
144+
<artifactId>error_prone_annotations</artifactId>
145145
<scope>provided</scope>
146146
</dependency>
147147
<dependency>
148-
<groupId>com.google.errorprone</groupId>
149-
<artifactId>error_prone_annotations</artifactId>
148+
<groupId>com.google.code.findbugs</groupId>
149+
<artifactId>jsr305</artifactId>
150150
<scope>provided</scope>
151151
</dependency>
152152
<dependency>

0 commit comments

Comments
 (0)