We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7343428 commit 19321cbCopy full SHA for 19321cb
build.gradle
@@ -57,6 +57,15 @@ allprojects {
57
}
58
59
60
+configurations.configureEach {
61
+ resolutionStrategy.eachDependency { DependencyResolveDetails details ->
62
+ if (details.requested.group == 'org.seleniumhq.selenium') {
63
+ details.useVersion('4.25.0')
64
+ details.because('Temporary workaround because of https://issues.chromium.org/issues/42323769')
65
+ }
66
67
+}
68
+
69
subprojects {
70
configurations.configureEach {
71
resolutionStrategy {
0 commit comments