Skip to content

Commit 9fcc703

Browse files
committed
Updated the readme to remove references to the 'bugfix' branch
1 parent 388ca8b commit 9fcc703

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ One common stumbling block for teams adjusting to gitflow with Maven projects is
7878
In practice, the Maven versions should:
7979

8080
* Be synchronized with release branch and hotfix branch names.
81-
* Never be -SNAPSHOT in the master branch, release, hotfix, or bugfix branches.
82-
* Always be -SNAPSHOT in the development or feature branches.
81+
* Never be -SNAPSHOT in the master branch, release, or hotfix branches.
82+
* Always be -SNAPSHOT in the development branch.
8383
* Be irrelevant if there's no git branch resolvable from your environment.
8484

8585
The `enforce-versions` goal asserts these semantics when it can resolve the `gitBranchExpression`.
@@ -96,7 +96,6 @@ The following properties change the behavior of this goal:
9696
| masterBranchPattern | origin/master | No | Regex. When matched, signals the master branch is being built. Note the lack of a subgroup. |
9797
| releaseBranchPattern | origin/release/(.*) | No | Regex. When matched, signals a release branch being built. Subgroup 1, if present, must match the Maven project version. |
9898
| hotfixBranchPattern | origin/hotfix/(.*) | No | Regex. When matched, signals a hotfix branch is being built. Subgroup 1, if present, must match the Maven project version. |
99-
| bugfixBranchPattern | origin/bugfix/.* | No | Regex. When matched, signals a bugfix branch is being built. Note the lack of a subgroup. |
10099
| developmentBranchPattern | origin/development | Yes | Regex. When matched, signals a development branch is being built. Note the lack of a subgroup. |
101100

102101
## Goal: `retarget-deploy` (Branch Specific Deploy Targets & Staging)
@@ -240,7 +239,6 @@ The following table describes the git branch expression -> repository used for r
240239
| masterBranchPattern | release |
241240
| releaseBranchPattern | stage |
242241
| hotfixBranchPattern | stage |
243-
| bugfixBranchPattern | stage |
244242
| developmentBranchPattern | snapshots |
245243
| All Others | local |
246244

0 commit comments

Comments
 (0)