Skip to content

Commit f7c295b

Browse files
lrozenblyumslawekjaranowski
authored andcommitted
[MSHARED-1382] support a possibility to disable snapshots update.
1 parent d0a2fa6 commit f7c295b

File tree

5 files changed

+105
-6
lines changed

5 files changed

+105
-6
lines changed

src/main/java/org/apache/maven/shared/invoker/DefaultInvocationRequest.java

+12-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class DefaultInvocationRequest implements InvocationRequest {
6363

6464
private boolean showErrors;
6565

66-
private boolean updateSnapshots;
66+
private UpdateSnapshotsPolicy updateSnapshotsPolicy = UpdateSnapshotsPolicy.DEFAULT;
6767

6868
private boolean shellEnvironmentInherited = true;
6969

@@ -227,7 +227,11 @@ public boolean isShowErrors() {
227227
* @return a boolean.
228228
*/
229229
public boolean isUpdateSnapshots() {
230-
return updateSnapshots;
230+
return updateSnapshotsPolicy == UpdateSnapshotsPolicy.ALWAYS;
231+
}
232+
233+
public UpdateSnapshotsPolicy getUpdateSnapshotsPolicy() {
234+
return updateSnapshotsPolicy;
231235
}
232236

233237
/**
@@ -330,7 +334,12 @@ public InvocationRequest setShowErrors(boolean showErrors) {
330334

331335
/** {@inheritDoc} */
332336
public InvocationRequest setUpdateSnapshots(boolean updateSnapshots) {
333-
this.updateSnapshots = updateSnapshots;
337+
return setUpdateSnapshotsPolicy(updateSnapshots ? UpdateSnapshotsPolicy.ALWAYS : UpdateSnapshotsPolicy.DEFAULT);
338+
}
339+
340+
@Override
341+
public InvocationRequest setUpdateSnapshotsPolicy(UpdateSnapshotsPolicy policy) {
342+
this.updateSnapshotsPolicy = policy;
334343
return this;
335344
}
336345

src/main/java/org/apache/maven/shared/invoker/InvocationRequest.java

+22-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,19 @@ public interface InvocationRequest {
5151
* Indicates whether Maven should enforce an update check for plugins and snapshots. By default, no update check is
5252
* performed.
5353
*
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.
5557
*/
5658
boolean isUpdateSnapshots();
5759

60+
/**
61+
* Indicates the update snapshots policy.
62+
* @return the update snapshots policy.
63+
* @see UpdateSnapshotsPolicy
64+
*/
65+
UpdateSnapshotsPolicy getUpdateSnapshotsPolicy();
66+
5867
/**
5968
* Gets the recursion behavior of a reactor invocation. By default, Maven will recursive the build into sub modules.
6069
*
@@ -451,12 +460,23 @@ enum CheckSumPolicy {
451460
* Specifies whether Maven should enforce an update check for plugins and snapshots. Equivalent of {@code -U} and
452461
* {@code --update-snapshots}
453462
*
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>
455464
* otherwise.
456465
* @return This invocation request.
466+
*
467+
* @see #setUpdateSnapshotsPolicy(UpdateSnapshotsPolicy) which provides a richer variety of the update snapshots policy values.
457468
*/
458469
InvocationRequest setUpdateSnapshots(boolean updateSnapshots);
459470

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+
460480
/**
461481
* Sets the failure mode of the Maven invocation. Equivalent of {@code -ff} and {@code --fail-fast}, {@code -fae}
462482
* and {@code --fail-at-end}, {@code -fn} and {@code --fail-never}

src/main/java/org/apache/maven/shared/invoker/MavenCommandLineBuilder.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -408,10 +408,14 @@ protected void setFlags(InvocationRequest request, Commandline cli) {
408408
cli.createArg().setValue("-o");
409409
}
410410

411-
if (request.isUpdateSnapshots()) {
411+
if (request.getUpdateSnapshotsPolicy() == UpdateSnapshotsPolicy.ALWAYS) {
412412
cli.createArg().setValue("-U");
413413
}
414414

415+
if (request.getUpdateSnapshotsPolicy() == UpdateSnapshotsPolicy.NEVER) {
416+
cli.createArg().setValue("-nsu");
417+
}
418+
415419
if (!request.isRecursive()) {
416420
cli.createArg().setValue("-N");
417421
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
package org.apache.maven.shared.invoker;
20+
21+
/**
22+
* Define how Maven should update snapshots.
23+
*/
24+
public enum UpdateSnapshotsPolicy {
25+
/**
26+
* Request Maven to always update snapshots.
27+
*/
28+
ALWAYS,
29+
30+
/**
31+
* Don't control Maven policy on snapshots updates.
32+
*/
33+
DEFAULT,
34+
35+
/**
36+
* Prevent Maven updating snapshots.
37+
*/
38+
NEVER
39+
}

src/test/java/org/apache/maven/shared/invoker/MavenCommandLineBuilderTest.java

+27
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,33 @@ public void testShouldSetUpdateSnapshotsFlagFromRequest() {
299299
assertArgumentsPresent(cli, Collections.singleton("-U"));
300300
}
301301

302+
// JUnit5: test methods don't need to be public
303+
@Test
304+
void testShouldSetUpdateSnapshotsPolicyAlwaysFromRequest() {
305+
mclb.setFlags(newRequest().setUpdateSnapshotsPolicy(UpdateSnapshotsPolicy.ALWAYS), cli);
306+
307+
assertArgumentsPresent(cli, Collections.singleton("-U"));
308+
assertArgumentsNotPresent(cli, Collections.singleton("-nsu"));
309+
}
310+
311+
@Test
312+
void testShouldSetUpdateSnapshotsPolicyDefaultFromRequest() {
313+
mclb.setFlags(newRequest().setUpdateSnapshotsPolicy(UpdateSnapshotsPolicy.DEFAULT), cli);
314+
315+
Set<String> args = new HashSet<>();
316+
args.add("-U");
317+
args.add("-nsu");
318+
assertArgumentsNotPresent(cli, args);
319+
}
320+
321+
@Test
322+
void testShouldSetUpdateSnapshotsPolicyNeverFromRequest() {
323+
mclb.setFlags(newRequest().setUpdateSnapshotsPolicy(UpdateSnapshotsPolicy.NEVER), cli);
324+
325+
assertArgumentsPresent(cli, Collections.singleton("-nsu"));
326+
assertArgumentsNotPresent(cli, Collections.singleton("-U"));
327+
}
328+
302329
@Test
303330
public void testShouldSetDebugFlagFromRequest() {
304331

0 commit comments

Comments
 (0)