aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src/main
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2020-12-18 10:27:51 +0100
committersonartech <sonartech@sonarsource.com>2020-12-22 20:09:38 +0000
commit0f1972c71fd80e613457995ec494bbbc3f57f8a7 (patch)
tree8f07d31026d7f1e4839bc265d913db6407e1cdf2 /sonar-core/src/main
parentcc838211b1c811ff86156d481b9e7f7fba9c632c (diff)
downloadsonarqube-0f1972c71fd80e613457995ec494bbbc3f57f8a7.tar.gz
sonarqube-0f1972c71fd80e613457995ec494bbbc3f57f8a7.zip
SONAR-13312 drop 'sonar.organization' scanner parameter
- drop unused bitbucket pipelines references
Diffstat (limited to 'sonar-core/src/main')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java b/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java
index 3432080c906..a2bd839cc25 100644
--- a/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java
+++ b/sonar-core/src/main/java/org/sonar/core/config/ScannerProperties.java
@@ -31,8 +31,6 @@ public class ScannerProperties {
public static final String BRANCHES_DOC_LINK = "https://redirect.sonarsource.com/doc/branches.html";
- public static final String ORGANIZATION = "sonar.organization";
-
public static final String BRANCH_NAME = "sonar.branch.name";
@Deprecated
public static final String BRANCH_TARGET = "sonar.branch.target";
@@ -64,11 +62,6 @@ public class ScannerProperties {
.category(CoreProperties.CATEGORY_SCM)
.onlyOnQualifiers(Qualifiers.PROJECT)
.build(),
- PropertyDefinition.builder(ORGANIZATION)
- .name("Organization key")
- .description("Key of the organization that contains the project being analyzed. If unset, then the organization marked as default is used.")
- .hidden()
- .build(),
PropertyDefinition.builder(BRANCH_NAME)
.name("Optional name of SonarQube/SCM branch")
.description("Provide a name for the branch being analyzed. It might match an existing branch of the project, otherwise a new branch will be created.")