-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Gradle - Canonical version from gradle.properties #2046
Comments
Any updates on this issue? =) |
looks like duplicates with #1618 |
Not quite duplicates but #1618 does explain how to obtain the same result through a bit of reconfiguration and many thanks for pointing that out. Moving the library properties from
So while setting the propeties in |
Similar to issue 775
I manage versions using
gradle.properties
. I've found this to be the safest way of registering a version for plugins and classpath dependencies.When I have the version number set directly in
build.gradle
, dependencies are correctly detected as out of date.When set as a variable, Dependabot seems unable to resolve the version of the library I'm using and simply says
Looks like these dependencies are no longer a dependency, so this is no longer needed.
For example:
Resilience4J, I have
gradle.properties
->resilience4jVersion=1.1.0
build.gradle
->io.github.resilience4j:resilience4j-spring-boot2:$resilience4jVersion
The text was updated successfully, but these errors were encountered: