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 5265853 commit 224cf30Copy full SHA for 224cf30
dependencyManagement/build.gradle.kts
@@ -86,7 +86,7 @@ dependencies {
86
}
87
88
fun isNonStable(version: String): Boolean {
89
- val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.toUpperCase().contains(it) }
+ val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) }
90
val regex = "^[0-9,.v-]+(-r)?$".toRegex()
91
val isGuava = version.endsWith("-jre")
92
val isStable = stableKeyword || regex.matches(version) || isGuava
0 commit comments