Hello Everyone, I upgraded the curator-recipes ver...
# community-support
u
Hello Everyone, I upgraded the curator-recipes version from 5.1.0 to 5.7.0 in libs.versions.toml, but the curator-framework inside curator-recipes still uses 5.1.0 I tried deleting the project and re-importing it, and deleting the .gradle folder, but it still didn't work. Can someone help me with it please.
t
Use
./gradlew dependencyInsight --configuration compileClasspath --dependency curator-framework
(adapt arguments to your situation) to better understand why 5.7 is downgraded to 5.1 https://docs.gradle.org/current/userguide/viewing_debugging_dependencies.html
u
I got this result,but I didn't find any valuable information
t
Assuming this project, this might be due to the Spring Dependency Management plugin and its configuration. If you can avoid using that plugin and replace it with built-in Gradle features (version catalog and platforms mainly), it'll likely save you some headaches in the long run.
u
you are right🎉
thank you👏