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
I am using
I am using the Mavencli
mvn -U org.openrewrite.maven:rewrite-maven-plugin:5.45.1:run -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-spring:RELEASE -Drewrite.activeRecipes=org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_3 -Drewrite.exportDatatables=true
Run the above recipe in any spring boot 3.3.x project that uses Jetty 12 as embedded server.
It should not add property jakarta-servlet.version 5.0.0 in maven properties section
Below property is added even if jetty 12 is in classpath
<jakarta-servlet.version> 5.0.0 </jakarta-servlet.version>
No error, but this property should not be added as there is no need of this property from Spring Boot 3.2 onwards as it supports Jetty 12.
Yes if the solutiion sounds good. My solution is to drop this recipe from Spring boot 3.2 onwards as there is no need to downgrade.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What version of OpenRewrite are you using?
I am using
How are you running OpenRewrite?
I am using the Mavencli
What is the smallest, simplest way to reproduce the problem?
Run the above recipe in any spring boot 3.3.x project that uses Jetty 12 as embedded server.
What did you expect to see?
It should not add property jakarta-servlet.version 5.0.0 in maven properties section
What did you see instead?
Below property is added even if jetty 12 is in classpath
What is the full stack trace of any errors you encountered?
Are you interested in contributing a fix to OpenRewrite?
Yes if the solutiion sounds good. My solution is to drop this recipe from Spring boot 3.2 onwards as there is no need to downgrade.
The text was updated successfully, but these errors were encountered: