Skip to content

Commit aaa6983

Browse files
author
Steve Riesenberg
committed
Exclude mockk 1.13.4 update
Issue gh-12695
1 parent a1b282f commit aaa6983

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@ updateDependenciesSettings {
119119
selection.reject("nimbus-jose-jwt gets updated when oauth2-oidc-sdk is updated to ensure consistency");
120120
}
121121
}
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+
}
122128
components.all { selection ->
123129
ModuleComponentIdentifier candidate = selection.getCandidate();
124130
// Do not compare version due to multiple versions existing

0 commit comments

Comments
 (0)