Reject jython updates

Issue gh-9542
This commit is contained in:
Rob Winch 2021-04-05 15:23:52 -05:00
parent 0ec20cfd3b
commit 457435bfd0
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,12 @@ updateDependenciesSettings {
selection.reject("commons-codec updates break saml tests");
}
}
components.withModule("org.python:jython") { selection ->
ModuleComponentIdentifier candidate = selection.getCandidate();
if (!candidate.getVersion().equals(selection.getCurrentVersion())) {
selection.reject("jython updates break integration tests");
}
}
}
}
}