-
Notifications
You must be signed in to change notification settings - Fork 83
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
Added Recipe for Migrating Dropwizard Dependencies #510
Conversation
Thanks @bsmahi ! |
import com.codahale.metrics.servlet.InstrumentedFilter; | ||
import com.codahale.metrics.servlets.MetricsServlet; | ||
""", | ||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import com.codahale.metrics.servlet.InstrumentedFilter; | |
import com.codahale.metrics.servlets.MetricsServlet; | |
""", | |
""" | |
import com.codahale.metrics.servlet.InstrumentedFilter; | |
import com.codahale.metrics.servlets.MetricsServlet; | |
import io.dropwizard.metrics.servlet.InstrumentedFilter; | |
import io.dropwizard.metrics.servlets.MetricsServlet; |
oldGroupId: io.dropwizard.metrics | ||
oldArtifactId: metrics-servlet | ||
newArtifactId: metrics-jakarta-servlet | ||
newVersion: 4.2.xx |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think I've seen xx
in a version selector before. I think it would probably better as just x
unless I am missing something here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@knutwannheden in the maven central, dropwizard version being specified in the format of 4.2.23 hence have given format as 4.2.xx.
Please suggest.
I am happy to change, please create issue and assigned to me, I will work on it.
Thanks,
Mahi
What's changed?
Added Recipe for migrating dropwizard dependencies to spring boot 3.x
What's your motivation?
I would love explore and contribute more on open-source and for openrewrite framework
Anyone you would like to review specifically?
@timtebeek Could you please review it. Thanks.
Checklist