We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since you are already preparing for Spring Boot 3 and Java 17 (#1433), maybe you can also consider changing https://github.com/zalando/zally/blob/main/server/zally-core/src/main/kotlin/org/zalando/zally/core/RuleProcessor.kt from @SupportedSourceVersion(SourceVersion.RELEASE_11) to @SupportedSourceVersion(SourceVersion.RELEASE_17).
https://github.com/zalando/zally/blob/main/server/zally-core/src/main/kotlin/org/zalando/zally/core/RuleProcessor.kt
@SupportedSourceVersion(SourceVersion.RELEASE_11)
@SupportedSourceVersion(SourceVersion.RELEASE_17)
Then we can avoid the following Maven warning in a Spring Boot 3 project:
[WARNING] Supported source version 'RELEASE_11' from annotation processor 'org.zalando.zally.core.RuleProcessor' less than -source '17'
Thanks.
The text was updated successfully, but these errors were encountered:
Could you open a pull request for this? Then it can fit into the next release.
Thanks!
Sorry, something went wrong.
Increase Java source version from 11 t 17
ef9ad84
Fixed zalando#1449
Increase Java source version from 11 to 17
cb936f9
Successfully merging a pull request may close this issue.
Since you are already preparing for Spring Boot 3 and Java 17 (#1433), maybe you can also consider changing
https://github.com/zalando/zally/blob/main/server/zally-core/src/main/kotlin/org/zalando/zally/core/RuleProcessor.kt
from@SupportedSourceVersion(SourceVersion.RELEASE_11)
to@SupportedSourceVersion(SourceVersion.RELEASE_17)
.Then we can avoid the following Maven warning in a Spring Boot 3 project:
Thanks.
The text was updated successfully, but these errors were encountered: