Correct regexs for skipping the deployments.

This commit is contained in:
Manuele Simi 2020-01-27 09:22:13 -05:00
parent 10263a5f46
commit d8aacfd01c
1 changed files with 3 additions and 3 deletions

View File

@ -174,7 +174,7 @@
<configuration>
<name>skip.when.is.release.used</name>
<value>${project.version}</value>
<regex>^((?!.*-SNAPSHOT).)*$</regex>
<regex>^((?!-SNAPSHOT).)*$</regex>
<replacement>true</replacement>
<failIfNoMatch>false</failIfNoMatch>
</configuration>
@ -329,7 +329,7 @@
<configuration>
<name>skip.when.is.snapshot.used</name>
<value>${project.version}</value>
<regex>^((?!.*-SNAPSHOT).)*$</regex>
<regex>.*-SNAPSHOT$</regex>
<replacement>true</replacement>
<failIfNoMatch>true</failIfNoMatch>
</configuration>
@ -438,7 +438,7 @@
<configuration>
<name>skip.when.is.snapshot.used</name>
<value>${project.version}</value>
<regex>^((?!.*-SNAPSHOT).)*$</regex>
<regex>.*-SNAPSHOT$</regex>
<replacement>true</replacement>
<failIfNoMatch>true</failIfNoMatch>
</configuration>