Peter
01/11/2022, 10:57 PM1.0.+ matches 1.0.2-alpha.25 😬Peter
01/11/2022, 11:08 PMconfigurations.all {
resolutionStrategy {
componentSelection {
all {
if (candidate.version.contains("alpha"))
reject("no alpha versions for $candidate")
}
}
}
}simon.vergauwen
01/12/2022, 8:49 AM1.x.x, but adding such resolution strategy is probably best option.
You might also want to exclude beta and rc. Although rc would be great if people in the wild test them as a sort of community build to report issues or breaking changes 😄simon.vergauwen
01/12/2022, 8:50 AM