Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface NamingPolicy {
* <p>getName.</p>
*
* @param request the {@code NamingPolicyRequest}
* @return the calculation of the name used for branching or tagging
* @return the name used for branching or tagging
* @throws org.apache.maven.shared.release.policy.PolicyException if exception in the policy
*/
NamingPolicyResult getName(NamingPolicyRequest request) throws PolicyException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public interface VersionPolicy {
* <p>getReleaseVersion.</p>
*
* @param request the {@code VersionPolicyRequest}
* @return the calculation of the release version from development state
* @return the release version derived from the development state
* @throws org.apache.maven.shared.release.policy.PolicyException if exception in the policy
* @throws org.apache.maven.shared.release.versions.VersionParseException if exception parsing the version
*/
Expand All @@ -41,7 +41,7 @@ public interface VersionPolicy {
* <p>getDevelopmentVersion.</p>
*
* @param request the {@code VersionPolicyRequest}
* @return the calculation of the next development version from release state
* @return the next development version derived from release state
* @throws org.apache.maven.shared.release.policy.PolicyException if exception in the policy
* @throws org.apache.maven.shared.release.versions.VersionParseException if exception parsing the version
*/
Expand Down