We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b282f commit aaa6983Copy full SHA for aaa6983
build.gradle
@@ -119,6 +119,12 @@ updateDependenciesSettings {
119
selection.reject("nimbus-jose-jwt gets updated when oauth2-oidc-sdk is updated to ensure consistency");
120
}
121
122
+ components.withModule("io.mockk:mockk") { selection ->
123
+ ModuleComponentIdentifier candidate = selection.getCandidate();
124
+ if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
125
+ selection.reject("mockk updates break tests");
126
+ }
127
128
components.all { selection ->
129
ModuleComponentIdentifier candidate = selection.getCandidate();
130
// Do not compare version due to multiple versions existing
0 commit comments