-
Notifications
You must be signed in to change notification settings - Fork 90
Find and remove dependencies that come with spring #364
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
Comments
Hi @fabapp2 I see action RemoveDependenciesMatchingRegex with hibernate dependencies regex as input. What additional needs to be done for this task? |
Hi @fabapp2 A gentle reminder. I can work on this issue if there is more than I stated above. |
Hi @ravig-kant |
What needs to be done
Example:
A project that gets migrated to Spring Boot could have a dependency to
hibernate
.When
spring-boot-starter-data-jpa
gets added which bringshibernate
, then the explicit dependency tohibernate
should be found by the Action as "now managed by boot" and removed from the pom.Implement new action
RemoveManagedDependencies
Example
The pom for
spring-boot-starter-test
defines:If the scanned application defines these dependencies
The
org.junit.jupiter:junit-jupiter:5.8.2
should be removed.Additional Information
Excludes must be understood. If in the given example but with this dependency
the recipe should not remove the declared dependency
The text was updated successfully, but these errors were encountered: