Browse Source

Reject commons-codec updates

Issue gh-9542
pull/9562/head
Rob Winch 5 years ago
parent
commit
0ec20cfd3b
  1. 8
      build.gradle

8
build.gradle

@ -45,6 +45,14 @@ updateDependenciesSettings { @@ -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");
}
}
}
}
}

Loading…
Cancel
Save