mirror of
https://github.com/afollestad/nock-nock.git
synced 2025-04-20 19:45:17 +00:00
14 lines
406 B
Groovy
14 lines
406 B
Groovy
apply plugin: "com.github.ben-manes.versions"
|
|
|
|
dependencyUpdates.resolutionStrategy {
|
|
componentSelection { rules ->
|
|
rules.all { ComponentSelection selection ->
|
|
boolean rejected = ['alpha', 'beta', 'rc', 'cr', 'm'].any { qualifier ->
|
|
selection.candidate.version ==~ /(?i).*[.-]${qualifier}[.\d-]*/
|
|
}
|
|
if (rejected) {
|
|
selection.reject('Not stable')
|
|
}
|
|
}
|
|
}
|
|
}
|