in src/main/java/org/apache/maven/shared/invoker/DefaultInvocationRequest.java [520:526]
public InvocationRequest addShellEnvironment(String name, String value) {
if (this.shellEnvironments == null) {
this.shellEnvironments = new HashMap<>();
}
this.shellEnvironments.put(name, value);
return this;
}