Skip to content

Commit ebfefba

Browse files
committed
Simplify dependency version filtering
1 parent 0912602 commit ebfefba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,8 @@ dependencies {
155155
jmh 'org.openjdk.jmh:jmh-generator-annprocess:latest.release' // for IntelliJ
156156

157157
components.all { ComponentMetadataDetails details ->
158-
details.statusScheme = ['candidate', 'release']
159158
if (details.id.version =~ /(?i).+([-.])(CANDIDATE|RC|BETA|ALPHA).*/) {
160-
details.status = 'candidate'
159+
details.status = 'milestone'
161160
} else {
162161
details.status = 'release'
163162
}

0 commit comments

Comments
 (0)