소스 검색

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