You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the default regex has (?:-[a-zA-Z0-9\\-_]+)? inside the capture group. This is nice for RC.
But it works only on the commit that is tagged. on next commits, the RC has vanished !
UseCase:
git tag "1.2.0-RC1"
mvn validate
# ==> Building my-app 1.2.0-RC1-SNAPSHOT
touch foobar.txt && git add foobar.txt && git commit -m "add foobar"
mvn validate
# ==> Building my-app 1.2.0-SNAPSHOT
where is -RC1 ???
The text was updated successfully, but these errors were encountered:
version: 1.9.0
usage context:
Problem description:
the default regex has
(?:-[a-zA-Z0-9\\-_]+)?
inside the capture group. This is nice for RC.But it works only on the commit that is tagged. on next commits, the RC has vanished !
UseCase:
where is
-RC1
???The text was updated successfully, but these errors were encountered: