diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-18 00:14:11 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-18 23:48:48 +0200 |
commit | b7e73ea7bd925ade9625a97c1a1419c1cee6ccd6 (patch) | |
tree | b98d5cbab17656ff4857b165df6b87aec602a789 /sonar-core | |
parent | 72a150316849ace24c1564824b3ac2d48ca3a5bf (diff) | |
download | sonarqube-b7e73ea7bd925ade9625a97c1a1419c1cee6ccd6.tar.gz sonarqube-b7e73ea7bd925ade9625a97c1a1419c1cee6ccd6.zip |
SONAR-6861 Drop the property "sonar.preventAutoProjectCreation"
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java b/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java index 5c40e31aa1c..83db2ed80dd 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java @@ -55,14 +55,6 @@ class SecurityProperties { .description("Forcing user authentication stops un-logged users to access SonarQube.") .type(PropertyType.BOOLEAN) .category(CoreProperties.CATEGORY_SECURITY) - .build(), - - PropertyDefinition.builder(CoreProperties.CORE_PREVENT_AUTOMATIC_PROJECT_CREATION) - .defaultValue(Boolean.toString(false)) - .name("Prevent automatic project creation") - .description("Set to true to prevent automatic project creation at first analysis and force project provisioning.") - .type(PropertyType.BOOLEAN) - .category(CoreProperties.CATEGORY_SECURITY) .build() ); |