RenovateBot maven scanning updates itself #7966
Unanswered
gaukharaya
asked this question in
Request Help
Replies: 1 comment 2 replies
-
Can you clarify what you mean by "making renovatebot think that there is a later version available for itself"? Renovate isn't published as a Maven dependency so I don't understand based on the description so far. And do you mean that you would want Renovate to update from |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
We are running renovate to scan our maven dependencies, in java based repos. All maven dependencies live in artifactory, at the end of the repo CI build a jar snapshot of the repo code itself is published to artifactory.
Here is where the problem is:
Our versioning setup mandates that we have a property called
revision
in root pom.xml which defines the major and minor versions, whereas the patch version is defined using the number of commits and is controlled by Cloudbees pipeline. This has the unfortunate downside of making renovatebot think that there is a later version available for itself, so it tries to update like this:0.1 -> 0.1.159
I want to use
ignoreDeps
, but I am not sure how to tell renovate configuration to not update itself during any given repo scan?Beta Was this translation helpful? Give feedback.
All reactions