Skip to content

Commit

Permalink
mojohaus#632 Fixed lower and upper bounds to keep milestones and rcs …
Browse files Browse the repository at this point in the history
…in the right majors.
  • Loading branch information
sultan committed Sep 16, 2022
1 parent c397535 commit c0ecc66
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,19 @@ public String toString()
private static class StringItem
implements Item
{
private static final String[] QUALIFIERS = {"snapshot", "alpha", "beta", "milestone", "rc", "", "sp"};
private static final String[] QUALIFIERS = {
"snapshot", "alpha", "beta", "milestone", "preview", "rc", "", "sp" };

private static final List<String> QUALIFIERS_LIST = Arrays.asList( QUALIFIERS );

private static final Properties ALIASES = new Properties();

static
{
ALIASES.put( "ga", "" );
ALIASES.put( "final", "" );
ALIASES.put( "mr", "milestone" );
ALIASES.put( "cr", "rc" );
ALIASES.put( "final", "" );
ALIASES.put( "ga", "" );
}

/**
Expand Down

0 comments on commit c0ecc66

Please sign in to comment.