private GradleCommandLineComposerParameters()

in gradle-runner-agent/src/main/java/jetbrains/buildServer/gradle/agent/commandLineComposers/GradleCommandLineComposerParameters.java [48:82]


  private GradleCommandLineComposerParameters(@NotNull Map<String, String> env,
                                              @NotNull Path buildTempDir,
                                              @NotNull Map<String, String> runnerParameters,
                                              @NotNull Path pluginsDir,
                                              @NotNull String gradleOpts,
                                              @NotNull List<String> gradleTasks,
                                              @NotNull List<String> gradleUserDefinedParams,
                                              boolean configurationCacheEnabled,
                                              @NotNull Map<String, String> configParameters,
                                              @NotNull BuildProgressLogger logger,
                                              @NotNull BuildRunnerContext runnerContext,
                                              @NotNull String javaHome,
                                              @NotNull Path checkoutDir,
                                              @NotNull Path workingDir,
                                              @NotNull List<String> initialGradleParams,
                                              @NotNull String exePath,
                                              @Nullable GradleLaunchModeSelectionResult launchModeSelectionResult) {
    this.env = env;
    this.buildTempDir = buildTempDir;
    this.runnerParameters = runnerParameters;
    this.pluginsDir = pluginsDir;
    this.gradleOpts = gradleOpts;
    this.gradleTasks = gradleTasks;
    this.gradleUserDefinedParams = gradleUserDefinedParams;
    this.configurationCacheEnabled = configurationCacheEnabled;
    this.configParameters = configParameters;
    this.logger = logger;
    this.runnerContext = runnerContext;
    this.javaHome = javaHome;
    this.checkoutDir = checkoutDir;
    this.workingDir = workingDir;
    this.initialGradleParams = initialGradleParams;
    this.exePath = exePath;
    this.launchModeSelectionResult = launchModeSelectionResult;
  }