Java Code Examples for org.gradle.util.GUtil#addToMap()

The following examples show how to use org.gradle.util.GUtil#addToMap() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RunBuildAction.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public RunBuildAction(BuildActionExecuter<BuildActionParameters> executer, StartParameter startParameter, File currentDir, BuildClientMetaData clientMetaData, long startTime, Map<?, ?> systemProperties, Map<String, String> envVariables) {
    this.executer = executer;
    this.startParameter = startParameter;
    this.currentDir = currentDir;
    this.clientMetaData = clientMetaData;
    this.startTime = startTime;
    this.systemProperties = new HashMap<String, String>();
    GUtil.addToMap(this.systemProperties, systemProperties);
    this.envVariables = envVariables;
}
 
Example 2
Source File: RunBuildAction.java    From pushfish-android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public RunBuildAction(BuildActionExecuter<BuildActionParameters> executer, StartParameter startParameter, File currentDir, BuildClientMetaData clientMetaData, long startTime, Map<?, ?> systemProperties, Map<String, String> envVariables) {
    this.executer = executer;
    this.startParameter = startParameter;
    this.currentDir = currentDir;
    this.clientMetaData = clientMetaData;
    this.startTime = startTime;
    this.systemProperties = new HashMap<String, String>();
    GUtil.addToMap(this.systemProperties, systemProperties);
    this.envVariables = envVariables;
}
 
Example 3
Source File: RunBuildAction.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public RunBuildAction(BuildActionExecuter<BuildActionParameters> executer, StartParameter startParameter, File currentDir, BuildClientMetaData clientMetaData, long startTime, Map<?, ?> systemProperties, Map<String, String> envVariables) {
    this.executer = executer;
    this.startParameter = startParameter;
    this.currentDir = currentDir;
    this.clientMetaData = clientMetaData;
    this.startTime = startTime;
    this.systemProperties = new HashMap<String, String>();
    GUtil.addToMap(this.systemProperties, systemProperties);
    this.envVariables = envVariables;
}
 
Example 4
Source File: RunBuildAction.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 5 votes vote down vote up
public RunBuildAction(BuildActionExecuter<BuildActionParameters> executer, StartParameter startParameter, File currentDir, BuildClientMetaData clientMetaData, long startTime, Map<?, ?> systemProperties, Map<String, String> envVariables) {
    this.executer = executer;
    this.startParameter = startParameter;
    this.currentDir = currentDir;
    this.clientMetaData = clientMetaData;
    this.startTime = startTime;
    this.systemProperties = new HashMap<String, String>();
    GUtil.addToMap(this.systemProperties, systemProperties);
    this.envVariables = envVariables;
}
 
Example 5
Source File: DaemonParameters.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    return systemProperties;
}
 
Example 6
Source File: DaemonParameters.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getEffectiveSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    GUtil.addToMap(systemProperties, System.getProperties());
    return systemProperties;
}
 
Example 7
Source File: DaemonParameters.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    return systemProperties;
}
 
Example 8
Source File: DaemonParameters.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getEffectiveSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    GUtil.addToMap(systemProperties, System.getProperties());
    return systemProperties;
}
 
Example 9
Source File: DaemonParameters.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    return systemProperties;
}
 
Example 10
Source File: DaemonParameters.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getEffectiveSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    GUtil.addToMap(systemProperties, System.getProperties());
    return systemProperties;
}
 
Example 11
Source File: DaemonParameters.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    return systemProperties;
}
 
Example 12
Source File: DaemonParameters.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Map<String, String> getEffectiveSystemProperties() {
    Map<String, String> systemProperties = new HashMap<String, String>();
    GUtil.addToMap(systemProperties, jvmOptions.getSystemProperties());
    GUtil.addToMap(systemProperties, System.getProperties());
    return systemProperties;
}