chore(POM): Update dependencies - #348
Merged
Merged
Conversation
Remove junit-jupter version specification and let maven handle it automatically.
… Boot set the version.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates several outdated dependencies, removes unused dependencies (
opencsv,recaptcha4j), removes hardcoded versions where Spring Boot / Testcontainers dependency management can manage them, and refactors a method to remove an implicit transitive dependency oncommons-collections4.Changes
⬆️ Dependency Upgrades
org.apache.commons:commons-lang3:3.9➔3.20.0org.apache.httpcomponents:httpclient:4.5.9➔4.5.14software.amazon.awssdk:translate:2.40.15➔2.43.2org.easymock:easymock:5.5.0➔5.7.0org.testcontainers:testcontainers:2.0.3➔2.0.5🗑️ Removed Unused Dependencies
com.opencsv:opencsv(4.6): Removed unused dependency.recaptcha4j(0.0.8): Removed obsolete, unused dependency.🧹 Dependency Management Cleanup
<version>2.0.0</version>fromjakarta.servlet.jsp.jstl-apiandjakarta.servlet.jsp.jstlto delegate version management to Spring Boot.org.testcontainers:junit-jupiter: Removed explicit version tag<version>1.21.4</version>to align with Testcontainers dependency management.🛠️ Code Changes
DifferentIdeasLogicServiceImpl:SetUtils.disjunction(...)(which was transitively pulled in byopencsvviacommons-collections4) with an internal helper methodgetDisjunction(Set<String> a, Set<String> b)using standard Java Collections.Verification
mvn clean compile)mvn test)opencsv,recaptcha4j, ororg.apache.commons.collections4.SetUtilsacross the codebase