forked from googleapis/release-please
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: fix grammar and base strategy design href (googleapis#1674)
- Loading branch information
Showing
6 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# Java and Maven Strategies | ||
|
||
This strategy generates SNAPSHOT versions after each release. Snapshot is created as separate "release" Pull Request, which updates all affected files, but does not create actual release or tag. | ||
This strategy generates SNAPSHOT versions after each release. Snapshot is created as a separate "release" Pull Request, which updates all affected files, but does not create an actual release or tag. | ||
|
||
Snapshot bumps have `autorelease: snapshot` label. | ||
|
||
## `java` Strategy | ||
|
||
General-purpose Java strategy, that does not update any files on its own. | ||
|
||
Uses `extra-files` to bump versions in actual files. For typical Maven project, use `maven` strategy instead. | ||
Uses `extra-files` to bump versions in actual files. For a typical Maven project, use the `maven` strategy instead. | ||
|
||
## `maven` Strategy | ||
|
||
Updates all found `pom.xml` files (recursively) using `pom` updater. | ||
|
||
## `pom` Updater | ||
|
||
Updates `/project/version` to current version automatically. | ||
Updates `/project/version` to the current version automatically. | ||
|
||
If version is not set, it tries to update `/project/parent/version`, assuming it is submodule which inherits version from its parent and should be bumped too. | ||
If this behavior is not intended, use `generic` or `xml` updater via `extra-files`. | ||
If the version is not set, it tries to update `/project/parent/version`, assuming it is a submodule which inherits the version from its parent and should be bumped too. | ||
If this behavior is not intended, use the `generic` or `xml` updater via `extra-files`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters