From 4fcac48794ec4f5268b321c231caa8b7bad56d90 Mon Sep 17 00:00:00 2001 From: Andres Almiray Date: Wed, 28 Apr 2021 15:06:02 +0200 Subject: [PATCH] Fix typo on snapshotPattern. Fixes https://github.com/jreleaser/jreleaser/issues/86 --- docs/modules/configuration/pages/project.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/modules/configuration/pages/project.adoc b/docs/modules/configuration/pages/project.adoc index eec415e..dd41cec 100644 --- a/docs/modules/configuration/pages/project.adoc +++ b/docs/modules/configuration/pages/project.adoc @@ -26,7 +26,7 @@ project: # A regex to determine if the project version is snapshot # May define a `JRELEASER_SNAPSHOT_PATTERN` environment variable instead. # icon:dot-circle[] icon:eye-slash[] - snapShotPattern: .*-SNAPSHOT + snapshotPattern: .*-SNAPSHOT # A short description (60 chars max). # icon:exclamation-triangle[] Only if configured distributions or announcers. @@ -119,7 +119,7 @@ TOML:: # A regex to determine if the project version is snapshot # May define a `JRELEASER_SNAPSHOT_PATTERN` environment variable instead. # icon:dot-circle[] icon:eye-slash[] - snapShotPattern = ".*-SNAPSHOT" + snapshotPattern = ".*-SNAPSHOT" # A short description (60 chars max). # icon:exclamation-triangle[] Only if configured distributions or announcers. @@ -207,7 +207,7 @@ JSON:: // A regex to determine if the project version is snapshot // May define a `JRELEASER_SNAPSHOT_PATTERN` environment variable instead. // icon:dot-circle[] icon:eye-slash[] - "snapShotPattern": ".*-SNAPSHOT", + "snapshotPattern": ".*-SNAPSHOT", // A short description (60 chars max). // icon:exclamation-triangle[] Only if configured distributions or announcers. @@ -315,7 +315,7 @@ Maven:: May define a `JRELEASER_SNAPSHOT_PATTERN` environment variable instead. icon:dot-circle[] icon:eye-slash[] --> - .*-SNAPSHOT + .*-SNAPSHOT