32
32
import java .util .regex .Pattern ;
33
33
34
34
import org .apache .maven .shared .invoker .InvocationRequest ;
35
+ import org .slf4j .Logger ;
36
+ import org .slf4j .LoggerFactory ;
35
37
36
38
/**
37
39
* Provides a convenient facade around the <code>invoker.properties</code>.
38
40
*
39
41
* @author Benjamin Bentmann
40
42
*/
41
43
class InvokerProperties {
44
+
45
+ private final Logger logger = LoggerFactory .getLogger (InvokerProperties .class );
46
+
42
47
private static final String SELECTOR_PREFIX = "selector." ;
43
48
44
49
private static final Pattern ENVIRONMENT_VARIABLES_PATTERN =
@@ -54,6 +59,7 @@ class InvokerProperties {
54
59
private Map <String , String > defaultEnvironmentVariables ;
55
60
private File defaultMavenExecutable ;
56
61
private Boolean defaultUpdateSnapshots ;
62
+ private String defaultUserPropertiesFiles ;
57
63
58
64
private enum InvocationProperty {
59
65
PROJECT ("invoker.project" ),
@@ -66,6 +72,7 @@ private enum InvocationProperty {
66
72
NON_RECURSIVE ("invoker.nonRecursive" ),
67
73
OFFLINE ("invoker.offline" ),
68
74
SYSTEM_PROPERTIES_FILE ("invoker.systemPropertiesFile" ),
75
+ USER_PROPERTIES_FILE ("invoker.userPropertiesFile" ),
69
76
DEBUG ("invoker.debug" ),
70
77
QUIET ("invoker.quiet" ),
71
78
SETTINGS_FILE ("invoker.settingsFile" ),
@@ -190,6 +197,14 @@ public void setDefaultUpdateSnapshots(boolean defaultUpdateSnapshots) {
190
197
this .defaultUpdateSnapshots = defaultUpdateSnapshots ;
191
198
}
192
199
200
+ /**
201
+ * Default value for userPropertiesFile
202
+ * @param defaultUserPropertiesFiles a default value
203
+ */
204
+ public void setDefaultUserPropertiesFiles (String defaultUserPropertiesFiles ) {
205
+ this .defaultUserPropertiesFiles = defaultUserPropertiesFiles ;
206
+ }
207
+
193
208
/**
194
209
* Gets the invoker properties being wrapped.
195
210
*
@@ -467,13 +482,33 @@ public boolean isExpectedResult(int exitCode, int index) {
467
482
}
468
483
469
484
/**
470
- * Gets the path to the properties file used to set the system properties for the specified invocation.
485
+ * Gets the path to the properties file used to set the user properties for the specified invocation.
471
486
*
472
487
* @param index The index of the invocation, must not be negative.
473
488
* @return The path to the properties file or <code>null</code> if not set.
474
489
*/
475
- public String getSystemPropertiesFile (int index ) {
476
- return get (InvocationProperty .SYSTEM_PROPERTIES_FILE , index ).orElse (null );
490
+ public String getUserPropertiesFile (int index ) {
491
+ Optional <String > userProperties = get (InvocationProperty .USER_PROPERTIES_FILE , index );
492
+ Optional <String > systemProperties = get (InvocationProperty .SYSTEM_PROPERTIES_FILE , index );
493
+
494
+ if (userProperties .isPresent () && systemProperties .isPresent ()) {
495
+ throw new IllegalArgumentException ("only one property '" + InvocationProperty .USER_PROPERTIES_FILE
496
+ + "' or '" + InvocationProperty .SYSTEM_PROPERTIES_FILE + "' can be used" );
497
+ }
498
+
499
+ if (userProperties .isPresent ()) {
500
+ return userProperties .get ();
501
+ }
502
+
503
+ if (systemProperties .isPresent ()) {
504
+ logger .warn (
505
+ "property {} is deprecated - please use {}" ,
506
+ InvocationProperty .SYSTEM_PROPERTIES_FILE ,
507
+ InvocationProperty .USER_PROPERTIES_FILE );
508
+ return systemProperties .get ();
509
+ }
510
+
511
+ return defaultUserPropertiesFiles ;
477
512
}
478
513
479
514
/**
0 commit comments