You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,8 +78,8 @@ One common stumbling block for teams adjusting to gitflow with Maven projects is
78
78
In practice, the Maven versions should:
79
79
80
80
* 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.
83
83
* Be irrelevant if there's no git branch resolvable from your environment.
84
84
85
85
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:
96
96
| masterBranchPattern | origin/master | No | Regex. When matched, signals the master branch is being built. Note the lack of a subgroup. |
97
97
| releaseBranchPattern | origin/release/(.*) | No | Regex. When matched, signals a release branch being built. Subgroup 1, if present, must match the Maven project version. |
98
98
| 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. |
100
99
| developmentBranchPattern | origin/development | Yes | Regex. When matched, signals a development branch is being built. Note the lack of a subgroup. |
101
100
102
101
## Goal: `retarget-deploy` (Branch Specific Deploy Targets & Staging)
@@ -240,7 +239,6 @@ The following table describes the git branch expression -> repository used for r
0 commit comments