Skip to content

Commit 8a8aaac

Browse files
author
Guillaume Lhermenier
committed
fix tagname otherDeployBranchPattern instead of otherDeploymentBranchPattern
1 parent 649537b commit 8a8aaac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ All of the solutions to these issues are implemented independently in different
110110
<stageDeploymentRepository>localnexus-stage</stageDeploymentRepository>
111111
<snapshotDeploymentRepository>localnexus-snapshots</snapshotDeploymentRepository>
112112
<!-- Allow branches starting with feature/poc to be published as automagically versioned branch-name-SNAPSHOT artifacts -->
113-
<otherDeploymentBranchPattern>(origin/)feature/poc/.*</otherDeploymentBranchPattern>
113+
<otherDeployBranchPattern>(origin/)feature/poc/.*</otherDeployBranchPattern>
114114
</configuration>
115115
<executions>
116116
<execution>
@@ -203,7 +203,7 @@ plugins in the build process (deploy, site-deploy, etc.) will use the repositori
203203
| releaseDeploymentRepository | n/a | The repository to use for releases. (Builds with a GIT_BRANCH matching `masterBranchPattern` or `supportBranchPattern`) |
204204
| stageDeploymentRepository | n/a | The repository to use for staging. (Builds with a GIT_BRANCH matching `releaseBranchPattern` or `hotfixBranchPattern`) |
205205
| snapshotDeploymentRepository | n/a | The repository to use for snapshots. (Builds matching `developmentBranchPattern`) |
206-
| otherDeploymentBranchPattern | n/a | Regex. When matched, the branch name is normalized and any artifacts produced by the build will include the normalized branch name and -SNAPSHOT. Deployment will target the snapshot repository |
206+
| otherDeployBranchPattern | n/a | Regex. When matched, the branch name is normalized and any artifacts produced by the build will include the normalized branch name and -SNAPSHOT. Deployment will target the snapshot repository |
207207

208208
**The repository properties should follow the following format**, `id::layout::url::uniqueVersion`.
209209

@@ -255,7 +255,7 @@ Can be replaced with the following plugin configuration, which also introduces t
255255
### Deploying non-release (OTHER) type branches as -SNAPSHOT releases.
256256

257257
In addition to setting up repository targets for release branches, the `retarget-depoy` branch can deploy other branches
258-
matching the `otherDeploymentBranchPattern` as -SNAPSHOT artifacts which include the branch name as build metadata.
258+
matching the `otherDeployBranchPattern` as -SNAPSHOT artifacts which include the branch name as build metadata.
259259
By default this is loosely based on the [semVer](https://semver.org) semantic version scheme, in that the plugin will
260260
reversion any artifacts to be produced with `+feature-branch-name-normalized-SNAPSHOT` where any characters not in
261261
`[0-9A-Za-z-.]` will be replaced with `-`. In cases where the `+` delimiter is problematic, you can override that default

0 commit comments

Comments
 (0)