-
Notifications
You must be signed in to change notification settings - Fork 34
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
Add dependabot config #289
Conversation
@lanwen could you please clarify? |
In practice, all the core plugins should be quite aligned on the versions used, so why to hide versions deeply in the plugin? :) However, I can add dependabot to track each plugin independently, that should solve the original issue as well. Will be that better from your side? |
@lanwen ah, okay, I see the issue with Dependabot. Yes, I would rather make Dependabot work with them then :) |
ah, wildcards won't work |
@lanwen not needed in this PR, but: |
For now it doesn't look like a lot of mainteinance manually :D |
So that it would be updated by dependabot among other
@bsideup any blockers for this one? |
.dependabot/config.yml
Outdated
- package_manager: "docker" | ||
directory: "/" | ||
update_schedule: "daily" | ||
# Plugins Dependencies |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you please add entries for every plugin that we have?
https://github.com/bsideup/liiklus/tree/master/plugins
I am also thinking whether we should do it in settings.gradle
and simply list them there, so that it is always in sync?
include projectName | ||
project(":${projectName}").projectDir = dir | ||
if (findProject(":plugins:${projectName}") == null) { | ||
throw new GradleException("Plugin /plugins/${projectName} was not included into the build. Check settings.gradle for details.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really nice idea! 👍
No description provided.