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 5a383fc commit ea4d093Copy full SHA for ea4d093
dependencyManagement/build.gradle.kts
@@ -97,11 +97,3 @@ dependencies {
97
}
98
99
100
-
101
-fun isNonStable(version: String): Boolean {
102
- val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) }
103
- val regex = "^[0-9,.v-]+(-r)?$".toRegex()
104
- val isGuava = version.endsWith("-jre")
105
- val isStable = stableKeyword || regex.matches(version) || isGuava
106
- return isStable.not()
107
-}
0 commit comments