Skip to content

Commit 0cd83aa

Browse files
committed
Fixed compiler warnings on JDK21+
1 parent 9b44a4a commit 0cd83aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<plugin>
138138
<groupId>org.apache.maven.plugins</groupId>
139139
<artifactId>maven-compiler-plugin</artifactId>
140-
<version>3.13.0</version>
140+
<version>3.14.0</version>
141141
<configuration>
142142
<target>1.8</target>
143143
<source>1.8</source>
@@ -146,6 +146,8 @@
146146
<!-- Silence warning "No processor claimed any of these annotations". One of the
147147
annotations that would trigger it is org.junit.jupiter.api.Test -->
148148
<arg>-Xlint:-processing</arg>
149+
<!-- Silence warnning "source value 8 is obsolete and will be removed in a future release" -->
150+
<arg>-Xlint:-options</arg>
149151
</compilerArgs>
150152
</configuration>
151153
</plugin>

0 commit comments

Comments
 (0)