@@ -51,10 +51,19 @@ public interface InvocationRequest {
51
51
* Indicates whether Maven should enforce an update check for plugins and snapshots. By default, no update check is
52
52
* performed.
53
53
*
54
- * @return <code>true</code> if plugins and snapshots should be updated, <code>false</code> otherwise.
54
+ * @return <code>true</code> if plugins and snapshots must be updated, <code>false</code> otherwise.
55
+ *
56
+ * @see #getUpdateSnapshotsPolicy() which provides a richer variety of the update snapshots policy values.
55
57
*/
56
58
boolean isUpdateSnapshots ();
57
59
60
+ /**
61
+ * Indicates the update snapshots policy.
62
+ * @return the update snapshots policy.
63
+ * @see UpdateSnapshotsPolicy
64
+ */
65
+ UpdateSnapshotsPolicy getUpdateSnapshotsPolicy ();
66
+
58
67
/**
59
68
* Gets the recursion behavior of a reactor invocation. By default, Maven will recursive the build into sub modules.
60
69
*
@@ -451,12 +460,23 @@ enum CheckSumPolicy {
451
460
* Specifies whether Maven should enforce an update check for plugins and snapshots. Equivalent of {@code -U} and
452
461
* {@code --update-snapshots}
453
462
*
454
- * @param updateSnapshots <code>true</code> if plugins and snapshots should be updated, <code>false</code>
463
+ * @param updateSnapshots <code>true</code> if plugins and snapshots must be updated, <code>false</code>
455
464
* otherwise.
456
465
* @return This invocation request.
466
+ *
467
+ * @see #setUpdateSnapshotsPolicy(UpdateSnapshotsPolicy) which provides a richer variety of the update snapshots policy values.
457
468
*/
458
469
InvocationRequest setUpdateSnapshots (boolean updateSnapshots );
459
470
471
+ /**
472
+ * Specify the Maven update snapshots policy
473
+ * @param policy the policy to be set
474
+ * @return This invocation request.
475
+ *
476
+ * @see UpdateSnapshotsPolicy
477
+ */
478
+ InvocationRequest setUpdateSnapshotsPolicy (UpdateSnapshotsPolicy policy );
479
+
460
480
/**
461
481
* Sets the failure mode of the Maven invocation. Equivalent of {@code -ff} and {@code --fail-fast}, {@code -fae}
462
482
* and {@code --fail-at-end}, {@code -fn} and {@code --fail-never}
0 commit comments