From d8aacfd01c3a0d792fe72e5ecc7c623a56cf2766 Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Mon, 27 Jan 2020 09:22:13 -0500 Subject: [PATCH] Correct regexs for skipping the deployments. --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 7b03442..cf66caa 100644 --- a/pom.xml +++ b/pom.xml @@ -174,7 +174,7 @@ skip.when.is.release.used ${project.version} - ^((?!.*-SNAPSHOT).)*$ + ^((?!-SNAPSHOT).)*$ true false @@ -329,7 +329,7 @@ skip.when.is.snapshot.used ${project.version} - ^((?!.*-SNAPSHOT).)*$ + .*-SNAPSHOT$ true true @@ -438,7 +438,7 @@ skip.when.is.snapshot.used ${project.version} - ^((?!.*-SNAPSHOT).)*$ + .*-SNAPSHOT$ true true