From 64b25b0613feb16070ada8e02c64761ac0d0f6d2 Mon Sep 17 00:00:00 2001 From: Lukasz Jarocki Date: Tue, 6 Dec 2022 14:44:08 +0100 Subject: SONAR-17699 implemented algorithm for running PRs in parallel --- .../sonar/core/config/ComputeEngineProperties.java | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sonar-core/src/main/java/org/sonar/core/config/ComputeEngineProperties.java (limited to 'sonar-core') diff --git a/sonar-core/src/main/java/org/sonar/core/config/ComputeEngineProperties.java b/sonar-core/src/main/java/org/sonar/core/config/ComputeEngineProperties.java new file mode 100644 index 00000000000..a8b09aae19c --- /dev/null +++ b/sonar-core/src/main/java/org/sonar/core/config/ComputeEngineProperties.java @@ -0,0 +1,29 @@ +/* + * SonarQube + * Copyright (C) 2009-2022 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +package org.sonar.core.config; + +public class ComputeEngineProperties { + + private ComputeEngineProperties() { + } + + public static final String CE_PARALLEL_PROJECT_TASKS_ENABLED = "sonar.ce.parallelProjectTasks"; + +} -- cgit v1.2.3