We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b067aa4 commit b206670Copy full SHA for b206670
build.gradle
@@ -87,6 +87,14 @@ updateDependenciesSettings {
87
if (candidate.getGroup().equals("org.opensaml")) {
88
selection.reject("org.opensaml maintains two different versions, so it must be updated manually");
89
}
90
+ if (candidate.getGroup().equals("org.jetbrains.kotlin")) {
91
+ if (candidate.getVersion().endsWith("-RC")) {
92
+ selection.reject("On a maintenance branch, we should not take RC versions")
93
+ }
94
+ if (candidate.getVersion().contains("-M")) {
95
+ selection.reject("On a maintenance branch, we should not take milestone versions")
96
97
98
99
100
0 commit comments