I recently updated a method in a library and uploaded the new build and version to JFrog Artifactory. I also updated the corresponding version in the build.gradle file of my project, as this library is a dependency.
However, when I try to use the updated method from this dependency and run my Java application, I encounter a “symbol not found” error. I have verified that the correct version is included in the classpath.
Here are the steps I have taken so far:
Updated the library version in build.gradle.
Ran the refresh-dependencies task.
Executed the clean and build commands.
Despite these steps, the issue persists. Am I missing something?