Skip to content

Commit

Permalink
update javadoc at-since annotation to 2.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cachescrubber authored and slawekjaranowski committed Nov 23, 2023
1 parent ccd5e22 commit eabed3a
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo {
*
* <p>If {@code skipResolution} is {@code true}, will specify the target version to which
* the parent artifact will be updated.</p>
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "parentVersion")
protected String parentVersion = null;

/**
* to update parent version by force when it is RELEASE or LATEST
*
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "forceUpdate", defaultValue = "false")
protected boolean forceUpdate = false;
Expand All @@ -86,7 +86,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo {
* Skips version resolution, only valid if {@code parentVersion} is set.
* Will effectively set the new parent version to the one from {@code parentVersion}
*
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "skipResolution", defaultValue = "false")
protected boolean skipResolution = false;
Expand All @@ -96,15 +96,15 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo {
* and there exists a version within the range fulfilling the criteria.</p>
* <p>Default <code>false</code></p>
*
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "allowDowngrade", defaultValue = "false")
protected boolean allowDowngrade;

/**
* Whether to allow the major version number to be changed.
*
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "allowMajorUpdates", defaultValue = "true")
protected boolean allowMajorUpdates = true;
Expand All @@ -114,7 +114,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo {
*
* <p><b>Note: {@code false} also implies {@linkplain #allowMajorUpdates} {@code false}</b></p>
*
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "allowMinorUpdates", defaultValue = "true")
protected boolean allowMinorUpdates = true;
Expand All @@ -125,7 +125,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo {
* <p><b>Note: {@code false} also implies {@linkplain #allowMajorUpdates}
* and {@linkplain #allowMinorUpdates} {@code false}</b></p>
*
* @since 2.17.0
* @since 2.16.2
*/
@Parameter(property = "allowIncrementalUpdates", defaultValue = "true")
protected boolean allowIncrementalUpdates = true;
Expand Down

0 comments on commit eabed3a

Please sign in to comment.