diff --git a/versions-maven-plugin/src/main/java/org/codehaus/mojo/versions/DisplayParentUpdatesMojo.java b/versions-maven-plugin/src/main/java/org/codehaus/mojo/versions/DisplayParentUpdatesMojo.java index d30114d948..3cab99c1f9 100644 --- a/versions-maven-plugin/src/main/java/org/codehaus/mojo/versions/DisplayParentUpdatesMojo.java +++ b/versions-maven-plugin/src/main/java/org/codehaus/mojo/versions/DisplayParentUpdatesMojo.java @@ -69,7 +69,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo { * *
If {@code skipResolution} is {@code true}, will specify the target version to which * the parent artifact will be updated.
- * @since 2.17.0 + * @since 2.16.2 */ @Parameter(property = "parentVersion") protected String parentVersion = null; @@ -77,7 +77,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo { /** * 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; @@ -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; @@ -96,7 +96,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo { * and there exists a version within the range fulfilling the criteria. *Default false
Note: {@code false} also implies {@linkplain #allowMajorUpdates} {@code false}
* - * @since 2.17.0 + * @since 2.16.2 */ @Parameter(property = "allowMinorUpdates", defaultValue = "true") protected boolean allowMinorUpdates = true; @@ -125,7 +125,7 @@ public class DisplayParentUpdatesMojo extends AbstractVersionsDisplayMojo { *Note: {@code false} also implies {@linkplain #allowMajorUpdates} * and {@linkplain #allowMinorUpdates} {@code false}
* - * @since 2.17.0 + * @since 2.16.2 */ @Parameter(property = "allowIncrementalUpdates", defaultValue = "true") protected boolean allowIncrementalUpdates = true;