You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building a project with spotbugs-maven-plugin v4.4.1 emits the following warning due to JEP 411. With Java 18, System::setSecurityManager will throw an UnsupportedOperationException!
Starting in Java 18, the default value of java.security.manager will be disallow if not otherwise set via java -D.... As a result, applications and libraries that call System::setSecurityManager may fail due to an unexpected UnsupportedOperationException.
Warning from Java
[java] WARNING: A terminally deprecated method in java.lang.System has been called
[java] WARNING: System::setSecurityManager has been called by edu.umd.cs.findbugs.ba.jsr305.TypeQualifierValue (file:/C:/Users/XXX/.m2/repository/com/github/spotbugs/spotbugs/4.4.1/spotbugs-4.4.1.jar)
[java] WARNING: Please consider reporting this to the maintainers of edu.umd.cs.findbugs.ba.jsr305.TypeQualifierValue
[java] WARNING: System::setSecurityManager will be removed in a future release
The text was updated successfully, but these errors were encountered:
Building a project with spotbugs-maven-plugin v4.4.1 emits the following warning due to JEP 411. With Java 18,
System::setSecurityManager
will throw anUnsupportedOperationException
!Warning from Java
The text was updated successfully, but these errors were encountered: