Add exlude non-stable version
This commit is contained in:
parent
2f54dcbe53
commit
840d7ec838
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ static def addRepos(RepositoryHandler handler) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static def isNonStable(String version) {
|
static def isNonStable(String version) {
|
||||||
def stableKeyword = ["a", "alpha", "beta", "final", "ga", "m", "release", "rc"].any { it -> version.toLowerCase().contains(it) }
|
def stableKeyword = ["a", "alpha", "b", "beta", "final", "ga", "m", "release", "rc"].any { it -> version.toLowerCase().contains(it) }
|
||||||
return stableKeyword
|
return stableKeyword
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue