aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-09-18 00:14:11 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-09-18 23:48:48 +0200
commitb7e73ea7bd925ade9625a97c1a1419c1cee6ccd6 (patch)
treeb98d5cbab17656ff4857b165df6b87aec602a789 /sonar-core
parent72a150316849ace24c1564824b3ac2d48ca3a5bf (diff)
downloadsonarqube-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.java8
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()
);