diff --git a/build.gradle b/build.gradle index f1f0a847dd7..6a68c6bb51a 100644 --- a/build.gradle +++ b/build.gradle @@ -195,6 +195,16 @@ dependencyUpdates.resolutionStrategy = { selection.reject("Version 1.0.10 is broken... waiting for 1.0.11") } } + withModule("com.microsoft.azure:applicationinsights-core") { ComponentSelection selection -> + if (selection.candidate.version.equals("2.0.0-BETA")) { + selection.reject("Version 2.0.0-BETA is broken... waiting for a working version... see #3561") + } + } + withModule("com.microsoft.azure:applicationinsights-logging-log4j2") { ComponentSelection selection -> + if (selection.candidate.version.equals("2.0.0-BETA")) { + selection.reject("Version 2.0.0-BETA is broken... waiting for a working version... see #3561") + } + } withModule("de.jensd:fontawesomefx-materialdesignfont") { ComponentSelection selection -> if (selection.candidate.version ==~ /2.*/) { selection.reject("Cannot be upgraded to version 2") @@ -215,6 +225,7 @@ dependencyUpdates.resolutionStrategy = { selection.reject("http://dev.mysql.com/downloads/connector/j/ lists the version 5.* as last stable version.") } } + } } @@ -395,7 +406,6 @@ afterEvaluate { } } - // Code quality tasks checkstyle { // do not use other packages for checkstyle, excluding gen(erated) sources