-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug Report: Schema2BeansProcessor in payara-web does not support JDK 17 #6748
Comments
I couldn't reproduce the issue. |
Greetings, |
Greetings, |
Hi, here are the steps to reproduce it:
Now in the build logs you will find this warning: |
Brief Summary
After updating the maven-compiler-plugin from version 3.8.1 to 3.13.0 using JDK17 the compiler shows a warning:
LEVEL: WARNING, MESSAGE: Supported source version 'RELEASE_7' from annotation processor 'org.netbeans.modules.schema2beansdev.Schema2BeansProcessor' less than -source '17'
For me it looks like that org.netbeans.modules.schema2beansdev.Schema2BeansProcessor does only support JDK7 as its annotated with "@SupportedSourceVersion(SourceVersion.RELEASE_7)".
This problem only occurs if i add fish.payara.extras:payara-embedded-web:6.2024.5 to a maven project and configure the maven-compiler-plugin in pom with version 3.13.0.
Expected Outcome
The class org.netbeans.modules.schema2beansdev.Schema2BeansProcessor supports JDK 17 and no compiler warning is shown using fish.payara.extras:payara-embedded-web:6.2024.5 as dependency.
Current Outcome
maven-compiler-plugin with version 3.13.0:
LEVEL: WARNING, MESSAGE: Supported source version 'RELEASE_7' from annotation processor 'org.netbeans.modules.schema2beansdev.Schema2BeansProcessor' less than -source '17'
Reproducer
Create a new maven based project and add fish.payara.extras:payara-embedded-web:6.2024.5 as dependency.
Use JDK 17 for compiler and the maven-compiler-plugin with version 3.13.0
Operating System
Windows 10 Pro
JDK Version
OpenJdk 17
Payara Distribution
Payara Embedded Web
The text was updated successfully, but these errors were encountered: