Ver Fonte

Reject jython updates

Issue gh-9542
Rob Winch há 4 anos atrás
pai
commit
457435bfd0
1 ficheiros alterados com 6 adições e 0 exclusões
  1. 6 0
      build.gradle

+ 6 - 0
build.gradle

@@ -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");
+				}
+			}
 		}
 	}
 }