浏览代码

Reject jython updates

Issue gh-9542
Rob Winch 4 年之前
父节点
当前提交
457435bfd0
共有 1 个文件被更改,包括 6 次插入0 次删除
  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");
+				}
+			}
 		}
 	}
 }