Skip to content

Commit 196de85

Browse files
committed
Add -Xlint:-classfile
1 parent 564d608 commit 196de85

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

appender/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,6 @@
4747
<artifactId>resilience4j-ratelimiter</artifactId>
4848
</dependency>
4949

50-
<dependency>
51-
<groupId>com.github.spotbugs</groupId>
52-
<artifactId>spotbugs-annotations</artifactId>
53-
<scope>provided</scope>
54-
</dependency>
55-
56-
<dependency>
57-
<groupId>biz.aQute.bnd</groupId>
58-
<artifactId>biz.aQute.bnd.annotation</artifactId>
59-
<scope>provided</scope>
60-
</dependency>
61-
6250
<dependency>
6351
<groupId>org.junit.jupiter</groupId>
6452
<artifactId>junit-jupiter-engine</artifactId>

pom.xml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,13 @@
8888
<!-- library versions -->
8989
<assertj.version>3.24.2</assertj.version>
9090
<awaitility.version>4.2.0</awaitility.version>
91-
<bndtools.version>7.0.0</bndtools.version>
9291
<embedded-redis.version>0.8.3</embedded-redis.version>
9392
<errorprone.version>2.15.0</errorprone.version>
9493
<jedis.version>5.1.0</jedis.version>
9594
<junit5.version>5.10.1</junit5.version>
9695
<log4j2.version>2.22.0</log4j2.version>
9796
<resilience4j.version>1.7.1</resilience4j.version>
9897
<slf4j.version>2.0.9</slf4j.version>
99-
<spotbugs.version>4.8.2</spotbugs.version>
10098

10199
<!-- plugin versions -->
102100
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
@@ -162,18 +160,6 @@
162160
<version>${slf4j.version}</version>
163161
</dependency>
164162

165-
<dependency>
166-
<groupId>com.github.spotbugs</groupId>
167-
<artifactId>spotbugs-annotations</artifactId>
168-
<version>${spotbugs.version}</version>
169-
</dependency>
170-
171-
<dependency>
172-
<groupId>biz.aQute.bnd</groupId>
173-
<artifactId>biz.aQute.bnd.annotation</artifactId>
174-
<version>${bndtools.version}</version>
175-
</dependency>
176-
177163
<dependency>
178164
<groupId>org.awaitility</groupId>
179165
<artifactId>awaitility</artifactId>
@@ -204,6 +190,7 @@
204190
<arg>-Xlint:-options</arg>
205191
<arg>-Xlint:-processing</arg>
206192
<arg>-Xlint:-serial</arg>
193+
<arg>-Xlint:-classfile</arg>
207194
</compilerArgs>
208195
<showDeprecation>true</showDeprecation>
209196
<annotationProcessorPaths>

0 commit comments

Comments
 (0)