Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add update exception for applicationinsights 2.0.0-BETA #3571

Merged
merged 2 commits into from
Dec 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -215,6 +225,7 @@ dependencyUpdates.resolutionStrategy = {
selection.reject("http://dev.mysql.com/downloads/connector/j/ lists the version 5.* as last stable version.")
}
}

}
}

Expand Down Expand Up @@ -395,7 +406,6 @@ afterEvaluate {
}
}


// Code quality tasks
checkstyle {
// do not use other packages for checkstyle, excluding gen(erated) sources
Expand Down