eclipse-ee4j / orb

Eclipse ORB is a CORBA orb for use in Jakarta EE and GlassFish and other projects that still need an ORB.

Home Page:https://projects.eclipse.org/projects/ee4j.orb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Warning: Supported source version 'RELEASE_6' from annotation processor 'org.glassfish.corba.annotation.processing.ExceptionWrapperProcessor' less than -source '11'

ahubold opened this issue · comments

org.glassfish.corba.annotation.processing.ExceptionWrapperProcessor is annotated with @SupportedSourceVersion(SourceVersion.RELEASE_6).

This annotation sets the "the latest source version an annotation processor supports."

As a consequence, there are lots of warnings when the jar is on the compile classpath, because the annotation processor is enabled by default via META-INF/services/javax.annotation.processing.Processor

For example with Java 11:

[WARNING] Supported source version 'RELEASE_6' from annotation processor 'org.glassfish.corba.annotation.processing.ExceptionWrapperProcessor' less than -source '11'

Fixed by #61