-
Notifications
You must be signed in to change notification settings - Fork 103
Mlykotom/test skie update #65
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,23 @@ | |
"extends": [ | ||
"local>android/.github:renovate-config" | ||
], | ||
|
||
"baseBranches": [ | ||
"main" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "Kotlin Dependencies", | ||
"matchPackagePrefixes": [ | ||
"org.jetbrains.kotlin", | ||
"co.touchlab.skie", | ||
"com.google.devtools.ksp" | ||
] | ||
} | ||
"matchPackagePrefixes": [ | ||
"org.jetbrains.kotlin", | ||
"com.google.devtools.ksp" | ||
] | ||
}, | ||
{ | ||
"matchPackageNames": [ | ||
"co.touchlab.skie:co.touchlab.skie.gradle.plugin" | ||
], | ||
"groupName": "SKIE Update Only", | ||
"prerelease": true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This Could you confirm this is the intended behavior? It's important for the team to be aware that these versions might be less stable than general availability releases and may require more thorough testing. |
||
} | ||
] | ||
} |
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.
The order of repositories in
pluginManagement
has been changed.gradlePluginPortal()
is typically listed with higher precedence thanmavenCentral()
for resolving Gradle plugins, as it's their primary distribution channel.Was there a specific reason for placing
mavenCentral()
beforegradlePluginPortal()
here? If not, consider restoring the previous order (i.e.,gradlePluginPortal()
beforemavenCentral()
, aftergoogle()
) for potentially more idiomatic and efficient plugin discovery.