1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Reject commons-codec updates

Issue gh-9542
This commit is contained in:
Rob Winch
2021-04-05 15:05:58 -05:00
parent eb6dccf05d
commit 0ec20cfd3b
+8
View File
@@ -45,6 +45,14 @@ updateDependenciesSettings {
releaseCandidatesVersions()
milestoneVersions()
snapshotVersions()
addRule { components ->
components.withModule("commons-codec:commons-codec") { selection ->
ModuleComponentIdentifier candidate = selection.getCandidate();
if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
selection.reject("commons-codec updates break saml tests");
}
}
}
}
}